diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4ac96428ecd4..96ed25ea2d11 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.40.25 +current_version = 0.40.26 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-[a-z]+)? diff --git a/.env b/.env index f6cc4a7f16c9..32c5ba3c4952 100644 --- a/.env +++ b/.env @@ -10,7 +10,7 @@ ### SHARED ### -VERSION=0.40.25 +VERSION=0.40.26 # When using the airbyte-db via default docker image CONFIG_ROOT=/data diff --git a/.github/workflows/deploy-docs-site.yml b/.github/workflows/deploy-docs-site.yml index 5b6a7b331565..a147a8af5b71 100644 --- a/.github/workflows/deploy-docs-site.yml +++ b/.github/workflows/deploy-docs-site.yml @@ -58,7 +58,7 @@ jobs: # 'C02TYDSUM8F' => '#dev-deploys' # 'C03BEADRPNY' => '#docs' args: >- - {\"channel\":\"C02TYDSUM8F\",\"attachments\":[ + {\"channel\":\"C03BEADRPNY\",\"attachments\":[ {\"color\":\"#ff0000\",\"blocks\":[ {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"OSS Docs deploy fails on the latest master :bangbang:\"}}, {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"_merged by_: *${{ github.actor }}*\"}}, @@ -74,7 +74,7 @@ jobs: # 'C02TYDSUM8F' => '#dev-deploys' # 'C03BEADRPNY' => '#docs' args: >- - {\"channel\":\"C02TYDSUM8F\",\"attachments\":[ + {\"channel\":\"C03BEADRPNY\",\"attachments\":[ {\"color\":\"#00ff00\",\"blocks\":[ {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"OSS Docs deploy was successful :tada:\"}}, {\"type\":\"section\",\"text\":{\"type\":\"mrkdwn\",\"text\":\"_merged by_: *${{ github.actor }}*\"}}, diff --git a/airbyte-bootloader/Dockerfile b/airbyte-bootloader/Dockerfile index d464f3d76af4..51eef7603b80 100644 --- a/airbyte-bootloader/Dockerfile +++ b/airbyte-bootloader/Dockerfile @@ -1,7 +1,7 @@ ARG JDK_IMAGE=airbyte/airbyte-base-java-image:1.0 FROM ${JDK_IMAGE} -ARG VERSION=0.40.25 +ARG VERSION=0.40.26 ENV APPLICATION airbyte-bootloader ENV VERSION ${VERSION} diff --git a/airbyte-commons-worker/src/main/java/io/airbyte/workers/internal/DefaultAirbyteSource.java b/airbyte-commons-worker/src/main/java/io/airbyte/workers/internal/DefaultAirbyteSource.java index 452fb439ab14..62e0ac5792b8 100644 --- a/airbyte-commons-worker/src/main/java/io/airbyte/workers/internal/DefaultAirbyteSource.java +++ b/airbyte-commons-worker/src/main/java/io/airbyte/workers/internal/DefaultAirbyteSource.java @@ -164,6 +164,11 @@ private void logInitialStateAsJSON(final WorkerSourceConfig sourceConfig) { return; } + if (sourceConfig.getState() == null) { + LOGGER.info("source starting state | empty"); + return; + } + LOGGER.info("source starting state | " + Jsons.serialize(sourceConfig.getState().getState())); } diff --git a/airbyte-commons/src/main/java/io/airbyte/commons/features/EnvVariableFeatureFlags.java b/airbyte-commons/src/main/java/io/airbyte/commons/features/EnvVariableFeatureFlags.java index e09108194518..d6d57ce885c5 100644 --- a/airbyte-commons/src/main/java/io/airbyte/commons/features/EnvVariableFeatureFlags.java +++ b/airbyte-commons/src/main/java/io/airbyte/commons/features/EnvVariableFeatureFlags.java @@ -12,6 +12,8 @@ public class EnvVariableFeatureFlags implements FeatureFlags { public static final String USE_STREAM_CAPABLE_STATE = "USE_STREAM_CAPABLE_STATE"; public static final String AUTO_DETECT_SCHEMA = "AUTO_DETECT_SCHEMA"; + // Set this value to true to see all messages from the source to destination, set to one second + // emission public static final String LOG_CONNECTOR_MESSAGES = "LOG_CONNECTOR_MESSAGES"; public static final String NEED_STATE_VALIDATION = "NEED_STATE_VALIDATION"; public static final String APPLY_FIELD_SELECTION = "APPLY_FIELD_SELECTION"; diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index 12d24e3eac2a..3a44f6fc1093 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -694,7 +694,7 @@ - name: Harvest sourceDefinitionId: fe2b4084-3386-4d3b-9ad6-308f61a6f1e6 dockerRepository: airbyte/source-harvest - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 documentationUrl: https://docs.airbyte.com/integrations/sources/harvest icon: harvest.svg sourceType: api @@ -785,11 +785,11 @@ - name: Jira sourceDefinitionId: 68e63de2-bb83-4c7e-93fa-a8a9051e3993 dockerRepository: airbyte/source-jira - dockerImageTag: 0.3.0 + dockerImageTag: 0.3.1 documentationUrl: https://docs.airbyte.com/integrations/sources/jira icon: jira.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: K6 Cloud sourceDefinitionId: e300ece7-b073-43a3-852e-8aff36a57f13 dockerRepository: airbyte/source-k6-cloud @@ -1250,11 +1250,11 @@ - name: PostHog sourceDefinitionId: af6d50ee-dddf-4126-a8ee-7faee990774f dockerRepository: airbyte/source-posthog - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 documentationUrl: https://docs.airbyte.com/integrations/sources/posthog icon: posthog.svg sourceType: api - releaseStage: alpha + releaseStage: beta - name: Postgres sourceDefinitionId: decd338e-5647-4c0b-adf4-da0e75f5a750 dockerRepository: airbyte/source-postgres @@ -1560,11 +1560,11 @@ - name: Square sourceDefinitionId: 77225a51-cd15-4a13-af02-65816bd0ecf4 dockerRepository: airbyte/source-square - dockerImageTag: 0.1.4 + dockerImageTag: 0.2.0 documentationUrl: https://docs.airbyte.com/integrations/sources/square icon: square.svg sourceType: api - releaseStage: alpha + releaseStage: beta - sourceDefinitionId: 7a4327c4-315a-11ec-8d3d-0242ac130003 name: Strava dockerRepository: airbyte/source-strava @@ -1637,7 +1637,7 @@ - name: TikTok Marketing sourceDefinitionId: 4bfac00d-ce15-44ff-95b9-9e3c3e8fbd35 dockerRepository: airbyte/source-tiktok-marketing - dockerImageTag: 1.0.0 + dockerImageTag: 1.0.1 documentationUrl: https://docs.airbyte.com/integrations/sources/tiktok-marketing icon: tiktok.svg sourceType: api @@ -2008,3 +2008,11 @@ sourceType: api icon: zoom.svg releaseStage: alpha +- name: Braze + sourceDefinitionId: 68b9c98e-0747-4c84-b05b-d30b47686725 + dockerRepository: airbyte/source-braze + dockerImageTag: 0.1.3 + documentationUrl: https://docs.airbyte.io/integrations/sources/braze + sourceType: api + icon: braze.svg + releaseStage: alpha diff --git a/airbyte-config/init/src/main/resources/seed/source_specs.yaml b/airbyte-config/init/src/main/resources/seed/source_specs.yaml index e1af9a9bc0bf..952ecf7896bf 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -6057,7 +6057,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-harvest:0.1.11" +- dockerImage: "airbyte/source-harvest:0.1.12" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/harvest" connectionSpecification: @@ -6085,11 +6085,21 @@ - "2017-01-25T00:00:00Z" type: "string" order: 1 + replication_end_date: + title: "End Date" + description: "UTC date and time in the format 2017-01-25T00:00:00Z. Any\ + \ data after this date will not be replicated." + pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$" + examples: + - "2017-01-25T00:00:00Z" + type: "string" + airbyte_hidden: true + order: 2 credentials: title: "Authentication mechanism" description: "Choose how to authenticate to Harvest." type: "object" - order: 2 + order: 3 oneOf: - type: "object" title: "Authenticate via Harvest (OAuth)" @@ -6658,7 +6668,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-jira:0.3.0" +- dockerImage: "airbyte/source-jira:0.3.1" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/jira" connectionSpecification: @@ -6677,6 +6687,7 @@ description: "Jira API Token. See the docs for more information on how to generate this key." airbyte_secret: true + order: 0 domain: type: "string" title: "Domain" @@ -6684,10 +6695,12 @@ - "domainname.atlassian.net" pattern: "^[a-zA-Z0-9._-]*\\.atlassian\\.net$" description: "The Domain for your Jira account, e.g. airbyteio.atlassian.net" + order: 1 email: type: "string" title: "Email" description: "The user email for your Jira account." + order: 2 projects: type: "array" title: "Projects" @@ -6697,36 +6710,33 @@ - "PROJ1" - "PROJ2" description: "List of Jira project keys to replicate data for." + order: 3 start_date: type: "string" title: "Start Date" - description: "The date from which you'd like to replicate data for Jira\ - \ in the format YYYY-MM-DDT00:00:00Z. All data generated after this date\ - \ will be replicated. Note that it will be used only in the following\ - \ incremental streams: issues." + description: "The date from which you want to replicate data from Jira,\ + \ use the format YYYY-MM-DDT00:00:00Z. Note that this field only applies\ + \ to certain streams, and only data generated on or after the start date\ + \ will be replicated. For more information, refer to the documentation." examples: - "2021-03-01T00:00:00Z" pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$" - additional_fields: - type: "array" - title: "Additional Fields" - items: - type: "string" - description: "List of additional fields to include in replicating issues." - examples: - - "customfield_10096" - - "customfield_10071" + format: "date-time" + order: 4 expand_issue_changelog: type: "boolean" title: "Expand Issue Changelog" description: "Expand the changelog when replicating issues." default: false + order: 5 render_fields: type: "boolean" title: "Render Issue Fields" description: "Render issue fields in HTML format in addition to Jira JSON-like\ \ format." default: false + order: 6 enable_experimental_streams: type: "boolean" title: "Enable Experimental Streams" @@ -6734,6 +6744,7 @@ \ Jira API endpoints. See https://docs.airbyte.com/integrations/sources/jira#experimental-tables\ \ for more info." default: false + order: 7 supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] @@ -11309,7 +11320,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-posthog:0.1.7" +- dockerImage: "airbyte/source-posthog:0.1.8" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/posthog" connectionSpecification: @@ -13893,46 +13904,22 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-square:0.1.4" +- dockerImage: "airbyte/source-square:0.2.0" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/square" connectionSpecification: $schema: "http://json-schema.org/draft-07/schema#" - title: "Square Source CDK Specifications" + title: "Square Spec" type: "object" required: - "is_sandbox" additionalProperties: true properties: - is_sandbox: - type: "boolean" - description: "Determines whether to use the sandbox or production environment." - title: "Sandbox" - examples: - - true - - false - default: false - start_date: - type: "string" - description: "UTC date in the format YYYY-MM-DD. Any data before this date\ - \ will not be replicated. If not set, all data will be replicated." - title: "Start Date" - examples: - - "2021-01-01" - default: "2021-01-01" - pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" - include_deleted_objects: - type: "boolean" - description: "In some streams there is an option to include deleted objects\ - \ (Items, Categories, Discounts, Taxes)" - title: "Include Deleted Objects" - examples: - - true - - false - default: false credentials: + title: "Authentication" + description: "Choose how to authenticate to Square." type: "object" - title: "Credential Type" + order: 0 oneOf: - title: "Oauth authentication" type: "object" @@ -13942,21 +13929,18 @@ - "client_secret" - "refresh_token" properties: - auth_type: + credentials_title: type: "string" - const: "Oauth" - enum: - - "Oauth" - default: "Oauth" + const: "OAuth Credentials" order: 0 client_id: - title: "Client ID" type: "string" + title: "Client ID" description: "The Square-issued ID of your application" airbyte_secret: true client_secret: - title: "Client Secret" type: "string" + title: "Client Secret" description: "The Square-issued application secret for your application" airbyte_secret: true refresh_token: @@ -13965,24 +13949,42 @@ description: "A refresh token generated using the above client ID\ \ and secret" airbyte_secret: true - - type: "object" - title: "API Key" + - title: "API key" + type: "object" required: - "auth_type" - "api_key" properties: - auth_type: + credentials_title: type: "string" - const: "Apikey" - enum: - - "Apikey" - default: "Apikey" - order: 1 + const: "API Key" + order: 0 api_key: - title: "API key token" type: "string" + title: "API key token" description: "The API key for a Square application" airbyte_secret: true + is_sandbox: + type: "boolean" + description: "Determines whether to use the sandbox or production environment." + title: "Sandbox" + default: false + order: 1 + start_date: + type: "string" + description: "UTC date in the format YYYY-MM-DD. Any data before this date\ + \ will not be replicated. If not set, all data will be replicated." + title: "Start Date" + default: "2021-01-01" + pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" + order: 2 + include_deleted_objects: + type: "boolean" + description: "In some streams there is an option to include deleted objects\ + \ (Items, Categories, Discounts, Taxes)" + title: "Include Deleted Objects" + default: false + order: 3 supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] @@ -14662,7 +14664,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-tiktok-marketing:1.0.0" +- dockerImage: "airbyte/source-tiktok-marketing:1.0.1" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/tiktok-marketing" changelogUrl: "https://docs.airbyte.com/integrations/sources/tiktok-marketing" @@ -17248,3 +17250,33 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] +- dockerImage: "airbyte/source-braze:0.1.3" + spec: + documentationUrl: "https://docs.airbyte.com/integrations/sources/braze" + connectionSpecification: + $schema: "http://json-schema.org/draft-07/schema#" + title: "Braze Spec" + type: "object" + additionalProperties: true + required: + - "url" + - "api_key" + - "start_date" + properties: + url: + type: "string" + title: "URL" + description: "Braze REST API endpoint" + api_key: + type: "string" + title: "Rest API Key" + airbyte_secret: true + description: "Braze REST API key" + start_date: + type: "string" + format: "date" + title: "Start date" + description: "Rows after this date will be synced" + supportsNormalization: false + supportsDBT: false + supported_destination_sync_modes: [] diff --git a/airbyte-connector-builder-server/Dockerfile b/airbyte-connector-builder-server/Dockerfile index 40b788b9f2bf..119b03709e5a 100644 --- a/airbyte-connector-builder-server/Dockerfile +++ b/airbyte-connector-builder-server/Dockerfile @@ -10,5 +10,5 @@ RUN pip install --no-cache-dir . ENTRYPOINT ["uvicorn", "connector_builder.entrypoint:app", "--host", "0.0.0.0", "--port", "80"] -LABEL io.airbyte.version=0.40.25 +LABEL io.airbyte.version=0.40.26 LABEL io.airbyte.name=airbyte/connector-builder-server diff --git a/airbyte-connector-builder-server/setup.py b/airbyte-connector-builder-server/setup.py index 35f3498b0b90..473a9697353d 100644 --- a/airbyte-connector-builder-server/setup.py +++ b/airbyte-connector-builder-server/setup.py @@ -14,7 +14,7 @@ setup( name="connector-builder-server", - version="0.40.25", + version="0.40.26", description="", long_description=README, author="Airbyte", diff --git a/airbyte-container-orchestrator/Dockerfile b/airbyte-container-orchestrator/Dockerfile index 76aafa8015d4..62f448d4eb5b 100644 --- a/airbyte-container-orchestrator/Dockerfile +++ b/airbyte-container-orchestrator/Dockerfile @@ -10,7 +10,7 @@ RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/s && chmod +x kubectl && mv kubectl /usr/local/bin/ # Don't change this manually. Bump version expects to make moves based on this string -ARG VERSION=0.40.25 +ARG VERSION=0.40.26 ENV APPLICATION airbyte-container-orchestrator ENV VERSION=${VERSION} diff --git a/airbyte-cron/Dockerfile b/airbyte-cron/Dockerfile index 1f2f426abba3..cd80bfbf5189 100644 --- a/airbyte-cron/Dockerfile +++ b/airbyte-cron/Dockerfile @@ -1,7 +1,7 @@ ARG JDK_IMAGE=airbyte/airbyte-base-java-image:1.0 FROM ${JDK_IMAGE} AS cron -ARG VERSION=0.40.25 +ARG VERSION=0.40.26 ENV APPLICATION airbyte-cron ENV VERSION ${VERSION} diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/AirbyteMessageConsumer.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/AirbyteMessageConsumer.java index 784cbac66db1..c67221eb50a0 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/AirbyteMessageConsumer.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/base/AirbyteMessageConsumer.java @@ -32,9 +32,20 @@ public interface AirbyteMessageConsumer extends CheckedConsumer + *
  • startTracked: Wraps set up of necessary infrastructure/configuration before message + * consumption.
  • + *
  • acceptTracked: Wraps actual processing of each + * {@link io.airbyte.protocol.models.v0.AirbyteMessage}.
  • + * * * Though not necessary, we highly encourage using this class when implementing destinations. See * child classes for examples. @@ -26,6 +30,11 @@ public abstract class FailureTrackingAirbyteMessageConsumer implements AirbyteMe private boolean hasFailed = false; + /** + * Wraps setup of necessary infrastructure/configuration before message consumption + * + * @throws Exception + */ protected abstract void startTracked() throws Exception; @Override @@ -39,6 +48,12 @@ public void start() throws Exception { } } + /** + * Wraps actual processing of each {@link AirbyteMessage} + * + * @param msg {@link AirbyteMessage} to be processed + * @throws Exception + */ protected abstract void acceptTracked(AirbyteMessage msg) throws Exception; @Override diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/BufferedStreamConsumer.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/BufferedStreamConsumer.java index ed66682f135e..d2a71bbcc8e4 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/BufferedStreamConsumer.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/buffered_stream_consumer/BufferedStreamConsumer.java @@ -135,6 +135,7 @@ protected void acceptTracked(final AirbyteMessage message) throws Exception { } // if the buffer flushes, update the states appropriately. + // TODO: ryankfu (if true, this is where bundling up logic to also commit to airbyte_raw table) if (bufferingStrategy.addRecord(stream, message)) { markStatesAsFlushedToTmpDestination(); } @@ -191,6 +192,7 @@ protected void close(final boolean hasFailed) throws Exception { onClose.accept(false); } + // TODO: (ryankfu) at this section for when we close the stream and mark stream as committed // if onClose succeeds without exception then we can emit the state record because it means its // records were not only flushed, but committed. stateManager.markFlushedAsCommitted(); diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DefaultDestStateLifecycleManager.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DefaultDestStateLifecycleManager.java index e0e5dd06f0a7..401234ba4f36 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DefaultDestStateLifecycleManager.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DefaultDestStateLifecycleManager.java @@ -19,10 +19,14 @@ * during a sync, so a single instance of this manager is sufficient for a destination to track * state during a sync. * + *

    * Strategy: Delegates state messages of each type to a StateManager that is appropriate to that * state type. + *

    * + *

    * Per the protocol, if state type is not set, assumes the LEGACY state type. + *

    */ public class DefaultDestStateLifecycleManager implements DestStateLifecycleManager { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestSingleStateLifecycleManager.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestSingleStateLifecycleManager.java index 763370579e93..190a9e7049eb 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestSingleStateLifecycleManager.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestSingleStateLifecycleManager.java @@ -16,8 +16,10 @@ * single state message represents the state for the ENTIRE connection. At the time of writing, * GLOBAL and LEGACY state types are the state type that match this pattern. * + *

    * Does NOT store duplicates. Because each state message represents the entire state for the * connection, it only stores (and emits) the LAST state it received at each phase. + *

    */ public class DestSingleStateLifecycleManager implements DestStateLifecycleManager { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStreamStateLifecycleManager.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStreamStateLifecycleManager.java index 35a1ab639205..da32711bbba1 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStreamStateLifecycleManager.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/dest_state_lifecycle_manager/DestStreamStateLifecycleManager.java @@ -22,10 +22,12 @@ * stream. In these cases, at each state of the process, it tracks the LAST state message for EACH * stream (no duplicates!). * + *

    * Guaranteed to output state messages in order relative to other messages of the SAME state. Does * NOT guarantee that state messages of different streams will be output in the order in which they * were received. State messages across streams will be emitted in alphabetical order (primary sort * on namespace, secondary on name). + *

    */ public class DestStreamStateLifecycleManager implements DestStateLifecycleManager { diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/BufferingStrategy.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/BufferingStrategy.java index da4c557a3aff..b74299b9b5c8 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/BufferingStrategy.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/BufferingStrategy.java @@ -23,7 +23,7 @@ public interface BufferingStrategy extends AutoCloseable { * Add a new message to the buffer while consuming streams * * @param stream - stream associated with record - * @param message - message to buffer + * @param message - {@link AirbyteMessage} to buffer * @return true if this record cause ALL records in the buffer to flush, otherwise false. * @throws Exception throw on failure */ diff --git a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/SerializedBufferingStrategy.java b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/SerializedBufferingStrategy.java index 4bf401d59d1a..4f2a07318ef1 100644 --- a/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/SerializedBufferingStrategy.java +++ b/airbyte-integrations/bases/base-java/src/main/java/io/airbyte/integrations/destination/record_buffer/SerializedBufferingStrategy.java @@ -30,6 +30,14 @@ public class SerializedBufferingStrategy implements BufferingStrategy { private long totalBufferSizeInBytes; private final ConfiguredAirbyteCatalog catalog; + /** + * Creates instance of Serialized Buffering Strategy used to handle the logic of flushing buffer + * with an associated buffer type + * + * @param onCreateBuffer type of buffer used upon creation + * @param catalog collection of {@link io.airbyte.protocol.models.ConfiguredAirbyteStream} + * @param onStreamFlush buffer flush logic used throughout the streaming of messages + */ public SerializedBufferingStrategy(final CheckedBiFunction onCreateBuffer, final ConfiguredAirbyteCatalog catalog, final CheckedBiConsumer onStreamFlush) { @@ -39,6 +47,15 @@ public SerializedBufferingStrategy(final CheckedBiFunctionFor STATE messages emit messages back to the platform + *
  • For RECORD messages upload message to associated Airbyte Stream. This means that RECORDS will be associated with their respective streams when + * more than one record exists
  • + * + * @param message {@link AirbyteMessage} to be processed + */ @Override public void acceptTracked(final AirbyteMessage message) { if (message.getType() == Type.STATE) { @@ -56,6 +65,11 @@ public void acceptTracked(final AirbyteMessage message) { } } + /** + * Processes {@link io.airbyte.protocol.models.AirbyteRecordMessage} by writing Airbyte stream data to Big Query Writer + * + * @param message record to be written + */ private void processRecord(final AirbyteMessage message) { final var pair = AirbyteStreamNameNamespacePair.fromRecordMessage(message.getRecord()); uploaderMap.get(pair).upload(message); diff --git a/airbyte-integrations/connectors/destination-bigquery/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDestinationTest.java b/airbyte-integrations/connectors/destination-bigquery/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDestinationTest.java index aeefe3de6164..a9f775576730 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDestinationTest.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryDestinationTest.java @@ -35,6 +35,8 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.NamingConventionTransformer; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import io.airbyte.protocol.models.v0.AirbyteMessage; @@ -46,8 +48,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.io.ByteArrayInputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/connectors/destination-bigquery/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryGcsDestinationTest.java b/airbyte-integrations/connectors/destination-bigquery/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryGcsDestinationTest.java index 3e03d088972b..ed2cb16ae548 100644 --- a/airbyte-integrations/connectors/destination-bigquery/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryGcsDestinationTest.java +++ b/airbyte-integrations/connectors/destination-bigquery/src/test-integration/java/io/airbyte/integrations/destination/bigquery/BigQueryGcsDestinationTest.java @@ -16,10 +16,10 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.string.Strings; import io.airbyte.integrations.destination.gcs.GcsDestinationConfig; -import io.airbyte.protocol.models.v0.CatalogHelpers; -import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.CatalogHelpers; +import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import java.io.ByteArrayInputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/connectors/destination-clickhouse/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationTest.java b/airbyte-integrations/connectors/destination-clickhouse/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationTest.java index 1d165eb197b7..90e67b721f39 100644 --- a/airbyte-integrations/connectors/destination-clickhouse/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationTest.java +++ b/airbyte-integrations/connectors/destination-clickhouse/src/test/java/io/airbyte/integrations/destination/clickhouse/ClickhouseDestinationTest.java @@ -18,14 +18,14 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.destination.ExtendedNameTransformer; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteMessage.Type; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.time.Instant; import java.util.Comparator; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-csv/src/test/java/io/airbyte/integrations/destination/csv/CsvDestinationTest.java b/airbyte-integrations/connectors/destination-csv/src/test/java/io/airbyte/integrations/destination/csv/CsvDestinationTest.java index c38174cd8d78..788fe4cc1039 100644 --- a/airbyte-integrations/connectors/destination-csv/src/test/java/io/airbyte/integrations/destination/csv/CsvDestinationTest.java +++ b/airbyte-integrations/connectors/destination-csv/src/test/java/io/airbyte/integrations/destination/csv/CsvDestinationTest.java @@ -23,6 +23,8 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import io.airbyte.protocol.models.v0.AirbyteMessage; @@ -31,8 +33,6 @@ import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.io.FileReader; import java.io.IOException; import java.io.Reader; diff --git a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksAzureBlobStorageStreamCopier.java b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksAzureBlobStorageStreamCopier.java index 120160bd27ff..0184623ce4a1 100644 --- a/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksAzureBlobStorageStreamCopier.java +++ b/airbyte-integrations/connectors/destination-databricks/src/main/java/io/airbyte/integrations/destination/databricks/DatabricksAzureBlobStorageStreamCopier.java @@ -61,8 +61,8 @@ public DatabricksAzureBlobStorageStreamCopier(final String stagingFolder, final DatabricksDestinationConfig databricksConfig, final ExtendedNameTransformer nameTransformer, final SqlOperations sqlOperations, - SpecializedBlobClientBuilder specializedBlobClientBuilder, - AzureBlobStorageConfig azureConfig) { + final SpecializedBlobClientBuilder specializedBlobClientBuilder, + final AzureBlobStorageConfig azureConfig) { super(stagingFolder, schema, configuredStream, database, databricksConfig, nameTransformer, sqlOperations); this.specializedBlobClientBuilder = specializedBlobClientBuilder; @@ -103,11 +103,11 @@ public String prepareStagingFile() { try { - String accountKey = "doesntmatter"; - String containerPath = String.format("%s/%s/%s/%s/", azureConfig.getContainerName(), stagingFolder, schemaName, streamName); - AzureBlobStorageFormatConfig formatConfig = + final String accountKey = "doesntmatter"; + final String containerPath = String.format("%s/%s/%s/%s/", azureConfig.getContainerName(), stagingFolder, schemaName, streamName); + final AzureBlobStorageFormatConfig formatConfig = new AzureBlobStorageCsvFormatConfig(Jsons.jsonNode(Map.of("flattening", "Root level flattening"))); - AzureBlobStorageDestinationConfig config = new AzureBlobStorageDestinationConfig(azureConfig.getEndpointUrl(), + final AzureBlobStorageDestinationConfig config = new AzureBlobStorageDestinationConfig(azureConfig.getEndpointUrl(), azureConfig.getAccountName(), accountKey, containerPath, 5, formatConfig); this.csvWriters.put(currentFile, new AzureBlobStorageCsvWriter(config, appendBlobClient, configuredStream)); @@ -143,7 +143,7 @@ protected String getCreateTempTableStatement() { final AirbyteStream stream = configuredStream.getStream(); LOGGER.info("Json schema for stream {}: {}", stream.getName(), stream.getJsonSchema()); - String schemaString = getSchemaString(); + final String schemaString = getSchemaString(); LOGGER.info("[Stream {}] tmp table schema: {}", stream.getName(), schemaString); @@ -155,13 +155,13 @@ protected String getCreateTempTableStatement() { private String getSchemaString() { // Databricks requires schema to be provided when creating delta table from CSV - StringBuilder schemaString = new StringBuilder("_airbyte_ab_id string, _airbyte_emitted_at string"); - ObjectNode properties = (ObjectNode) configuredStream.getStream().getJsonSchema().get("properties"); - List recordHeaders = MoreIterators.toList(properties.fieldNames()) + final StringBuilder schemaString = new StringBuilder("_airbyte_ab_id string, _airbyte_emitted_at string"); + final ObjectNode properties = (ObjectNode) configuredStream.getStream().getJsonSchema().get("properties"); + final List recordHeaders = MoreIterators.toList(properties.fieldNames()) .stream().sorted().toList(); - for (String header : recordHeaders) { - JsonNode node = properties.get(header); - String type = node.get("type").asText(); + for (final String header : recordHeaders) { + final JsonNode node = properties.get(header); + final String type = node.get("type").asText(); schemaString.append(", `").append(header).append("` ").append(type.equals("number") ? "double" : type); } return schemaString.toString(); @@ -170,12 +170,12 @@ private String getSchemaString() { @Override public String generateMergeStatement(final String destTableName) { LOGGER.info("Preparing to merge tmp table {} to dest table: {}, schema: {}, in destination.", tmpTableName, destTableName, schemaName); - var queries = new StringBuilder(); + final var queries = new StringBuilder(); if (destinationSyncMode.equals(DestinationSyncMode.OVERWRITE)) { queries.append(sqlOperations.truncateTableQuery(database, schemaName, destTableName)); LOGGER.info("Destination OVERWRITE mode detected. Dest table: {}, schema: {}, truncated.", destTableName, schemaName); } - queries.append(sqlOperations.copyTableQuery(database, schemaName, tmpTableName, destTableName)); + queries.append(sqlOperations.insertTableQuery(database, schemaName, tmpTableName, destTableName)); return queries.toString(); } @@ -183,7 +183,7 @@ public String generateMergeStatement(final String destTableName) { @Override protected void deleteStagingFile() { LOGGER.info("Begin cleaning azure blob staging files."); - for (AppendBlobClient appendBlobClient : blobClients.values()) { + for (final AppendBlobClient appendBlobClient : blobClients.values()) { appendBlobClient.delete(); } LOGGER.info("Azure Blob staging files cleaned."); @@ -192,8 +192,8 @@ protected void deleteStagingFile() { @Override public void closeNonCurrentStagingFileWriters() throws Exception { LOGGER.info("Begin closing non current file writers"); - Set removedKeys = new HashSet<>(); - for (String key : activeStagingWriterFileNames) { + final Set removedKeys = new HashSet<>(); + for (final String key : activeStagingWriterFileNames) { if (!key.equals(currentFile)) { csvWriters.get(key).close(false); csvWriters.remove(key); @@ -208,8 +208,8 @@ public String getCurrentFile() { return currentFile; } - private static BlobContainerClient getBlobContainerClient(AppendBlobClient appendBlobClient) { - BlobContainerClient containerClient = appendBlobClient.getContainerClient(); + private static BlobContainerClient getBlobContainerClient(final AppendBlobClient appendBlobClient) { + final BlobContainerClient containerClient = appendBlobClient.getContainerClient(); if (!containerClient.exists()) { containerClient.create(); } diff --git a/airbyte-integrations/connectors/destination-elasticsearch/src/test/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestinationTest.java b/airbyte-integrations/connectors/destination-elasticsearch/src/test/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestinationTest.java index fce5926b9f66..aa61760c49d3 100644 --- a/airbyte-integrations/connectors/destination-elasticsearch/src/test/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestinationTest.java +++ b/airbyte-integrations/connectors/destination-elasticsearch/src/test/java/io/airbyte/integrations/destination/elasticsearch/ElasticsearchDestinationTest.java @@ -11,14 +11,14 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.time.Duration; import java.time.Instant; import java.util.ArrayList; diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/JdbcBufferedConsumerFactory.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/JdbcBufferedConsumerFactory.java index cd8a21ccd28b..339189da1b59 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/JdbcBufferedConsumerFactory.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/JdbcBufferedConsumerFactory.java @@ -175,7 +175,7 @@ private static OnCloseFunction onCloseFunction(final JdbcDatabase database, case APPEND_DEDUP -> {} default -> throw new IllegalStateException("Unrecognized sync mode: " + writeConfig.getSyncMode()); } - queryList.add(sqlOperations.copyTableQuery(database, schemaName, srcTableName, dstTableName)); + queryList.add(sqlOperations.insertTableQuery(database, schemaName, srcTableName, dstTableName)); } LOGGER.info("Executing finalization of tables."); diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/JdbcSqlOperations.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/JdbcSqlOperations.java index c0efeab47b92..2ba0530f51cb 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/JdbcSqlOperations.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/JdbcSqlOperations.java @@ -87,7 +87,7 @@ public String truncateTableQuery(final JdbcDatabase database, final String schem } @Override - public String copyTableQuery(final JdbcDatabase database, final String schemaName, final String srcTableName, final String dstTableName) { + public String insertTableQuery(final JdbcDatabase database, final String schemaName, final String srcTableName, final String dstTableName) { return String.format("INSERT INTO %s.%s SELECT * FROM %s.%s;\n", schemaName, dstTableName, schemaName, srcTableName); } diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/SqlOperations.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/SqlOperations.java index a04545977da1..b6303fc8ceb1 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/SqlOperations.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/SqlOperations.java @@ -11,8 +11,18 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; -// todo (cgardens) - is it necessary to expose so much configurability in this interface. review if -// we can narrow the surface area. +/** + * todo (cgardens) - is it necessary to expose so much configurability in this interface. review if we can narrow the surface area. + * + * SQL queries required for successfully syncing to a destination connector. These operations include the ability to: + *
      + *
    • Write - insert records from source connector
    • + *
    • Create - overloaded function but primarily to create tables if they don't exist (e.g. tmp tables to "stage" records before finalizing + * to final table
    • + *
    • Drop - removes a table from the schema
    • + *
    • Insert - move data from one table to another table - usually used for inserting data from tmp to final table (aka airbyte_raw)
    • + *
    + */ public interface SqlOperations { Logger LOGGER = LoggerFactory.getLogger(JdbcBufferedConsumerFactory.class); @@ -88,16 +98,18 @@ default boolean isSchemaExists(final JdbcDatabase database, final String schemaN void insertRecords(JdbcDatabase database, List records, String schemaName, String tableName) throws Exception; /** - * Query to copy all records from source table to destination table. Both tables must be in the + * Query to insert all records from source table to destination table. Both tables must be in the * specified schema. Assumes both table exist. * + *

    NOTE: this is an append-only operation meaning that data can be duplicated

    + * * @param database Database that the connector is syncing * @param schemaName Name of schema * @param sourceTableName Name of source table * @param destinationTableName Name of destination table - * @return Query + * @return SQL Query string */ - String copyTableQuery(JdbcDatabase database, String schemaName, String sourceTableName, String destinationTableName); + String insertTableQuery(JdbcDatabase database, String schemaName, String sourceTableName, String destinationTableName); /** * Given an arbitrary number of queries, execute a transaction. diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/WriteConfig.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/WriteConfig.java index 6e7b6c9df687..895b89a06264 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/WriteConfig.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/WriteConfig.java @@ -11,14 +11,12 @@ import org.joda.time.DateTimeZone; /** - * Write configuration POJO for all destinations extending {@link AbstractJdbcDestination}. + * Write configuration POJO (plain old java object) for all destinations extending {@link AbstractJdbcDestination}. */ public class WriteConfig { private final String streamName; - private final String namespace; - private final String outputSchemaName; private final String tmpTableName; private final String outputTableName; diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/azure/AzureBlobStorageStreamCopier.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/azure/AzureBlobStorageStreamCopier.java index d80bb3c38dfe..3db457ed7414 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/azure/AzureBlobStorageStreamCopier.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/azure/AzureBlobStorageStreamCopier.java @@ -77,7 +77,7 @@ public AzureBlobStorageStreamCopier(final String stagingFolder, this.filenameGenerator = new StagingFilenameGenerator(streamName, GlobalDataSizeConstants.DEFAULT_MAX_BATCH_SIZE_BYTES); } - public static void attemptAzureBlobWriteAndDelete(AzureBlobStorageConfig config) { + public static void attemptAzureBlobWriteAndDelete(final AzureBlobStorageConfig config) { AppendBlobClient appendBlobClient = null; try { appendBlobClient = new SpecializedBlobClientBuilder() @@ -87,7 +87,7 @@ public static void attemptAzureBlobWriteAndDelete(AzureBlobStorageConfig config) .blobName("testAzureBlob" + UUID.randomUUID()) .buildAppendBlobClient(); - BlobContainerClient containerClient = getBlobContainerClient(appendBlobClient); + final BlobContainerClient containerClient = getBlobContainerClient(appendBlobClient); writeTestDataIntoBlob(appendBlobClient); listCreatedBlob(containerClient); } finally { @@ -99,11 +99,11 @@ public static void attemptAzureBlobWriteAndDelete(AzureBlobStorageConfig config) } - private static void listCreatedBlob(BlobContainerClient containerClient) { + private static void listCreatedBlob(final BlobContainerClient containerClient) { containerClient.listBlobs().forEach(blobItem -> LOGGER.info("Blob name: " + blobItem.getName() + "Snapshot: " + blobItem.getSnapshot())); } - private static void writeTestDataIntoBlob(AppendBlobClient appendBlobClient) { + private static void writeTestDataIntoBlob(final AppendBlobClient appendBlobClient) { final String test = "test_data"; LOGGER.info("Writing test data to Azure Blob storage: " + test); final InputStream dataStream = new ByteArrayInputStream(test.getBytes(StandardCharsets.UTF_8)); @@ -114,8 +114,8 @@ private static void writeTestDataIntoBlob(AppendBlobClient appendBlobClient) { LOGGER.info("blobCommittedBlockCount: " + blobCommittedBlockCount); } - private static BlobContainerClient getBlobContainerClient(AppendBlobClient appendBlobClient) { - BlobContainerClient containerClient = appendBlobClient.getContainerClient(); + private static BlobContainerClient getBlobContainerClient(final AppendBlobClient appendBlobClient) { + final BlobContainerClient containerClient = appendBlobClient.getContainerClient(); if (!containerClient.exists()) { containerClient.create(); } @@ -134,7 +134,7 @@ public Set getAzureStagingFiles() { } @Override - public void write(UUID id, AirbyteRecordMessage recordMessage, String azureFileName) throws Exception { + public void write(final UUID id, final AirbyteRecordMessage recordMessage, final String azureFileName) throws Exception { if (csvPrinters.containsKey(azureFileName)) { csvPrinters.get(azureFileName).printRecord(id, Jsons.serialize(recordMessage.getData()), @@ -156,7 +156,7 @@ public String prepareStagingFile() { blobClients.put(currentFile, appendBlobClient); appendBlobClient.create(true); - BufferedOutputStream bufferedOutputStream = + final BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(appendBlobClient.getBlobOutputStream(), Math.toIntExact(GlobalDataSizeConstants.MAX_FILE_SIZE)); final var writer = new PrintWriter(bufferedOutputStream, true, StandardCharsets.UTF_8); try { @@ -173,7 +173,7 @@ private String prepareAzureStagingFile() { } @Override - public void closeStagingUploader(boolean hasFailed) throws Exception { + public void closeStagingUploader(final boolean hasFailed) throws Exception { LOGGER.info("Uploading remaining data for {} stream.", streamName); for (final var csvPrinter : csvPrinters.values()) { csvPrinter.close(); @@ -202,14 +202,14 @@ public void copyStagingFileToTemporaryTable() throws Exception { LOGGER.info("Copy to tmp table {} in destination for stream {} complete.", tmpTableName, streamName); } - private String getFullAzurePath(String azureStagingFile) { + private String getFullAzurePath(final String azureStagingFile) { return "azure://" + azureBlobConfig.getAccountName() + "." + azureBlobConfig.getEndpointDomainName() + "/" + azureBlobConfig.getContainerName() + "/" + azureStagingFile; } @Override public String createDestinationTable() throws Exception { - var destTableName = nameTransformer.getRawTableName(streamName); + final var destTableName = nameTransformer.getRawTableName(streamName); LOGGER.info("Preparing table {} in destination.", destTableName); sqlOperations.createTableIfNotExists(db, schemaName, destTableName); LOGGER.info("Table {} in destination prepared.", tmpTableName); @@ -218,21 +218,21 @@ public String createDestinationTable() throws Exception { } @Override - public String generateMergeStatement(String destTableName) throws Exception { + public String generateMergeStatement(final String destTableName) throws Exception { LOGGER.info("Preparing to merge tmp table {} to dest table: {}, schema: {}, in destination.", tmpTableName, destTableName, schemaName); - var queries = new StringBuilder(); + final var queries = new StringBuilder(); if (destSyncMode.equals(DestinationSyncMode.OVERWRITE)) { queries.append(sqlOperations.truncateTableQuery(db, schemaName, destTableName)); LOGGER.info("Destination OVERWRITE mode detected. Dest table: {}, schema: {}, truncated.", destTableName, schemaName); } - queries.append(sqlOperations.copyTableQuery(db, schemaName, tmpTableName, destTableName)); + queries.append(sqlOperations.insertTableQuery(db, schemaName, tmpTableName, destTableName)); return queries.toString(); } @Override public void removeFileAndDropTmpTable() throws Exception { LOGGER.info("Begin cleaning azure blob staging files."); - for (AppendBlobClient appendBlobClient : blobClients.values()) { + for (final AppendBlobClient appendBlobClient : blobClients.values()) { appendBlobClient.delete(); } LOGGER.info("Azure Blob staging files cleaned."); @@ -245,8 +245,8 @@ public void removeFileAndDropTmpTable() throws Exception { @Override public void closeNonCurrentStagingFileWriters() throws Exception { LOGGER.info("Begin closing non current file writers"); - Set removedKeys = new HashSet<>(); - for (String key : activeStagingWriterFileNames) { + final Set removedKeys = new HashSet<>(); + for (final String key : activeStagingWriterFileNames) { if (!key.equals(currentFile)) { csvPrinters.get(key).close(); csvPrinters.remove(key); diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/gcs/GcsStreamCopier.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/gcs/GcsStreamCopier.java index 753f47638858..0fd843dd9701 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/gcs/GcsStreamCopier.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/gcs/GcsStreamCopier.java @@ -195,7 +195,7 @@ public String generateMergeStatement(final String destTableName) throws Exceptio queries.append(sqlOperations.truncateTableQuery(db, schemaName, destTableName)); LOGGER.info("Destination OVERWRITE mode detected. Dest table: {}, schema: {}, will be truncated.", destTableName, schemaName); } - queries.append(sqlOperations.copyTableQuery(db, schemaName, tmpTableName, destTableName)); + queries.append(sqlOperations.insertTableQuery(db, schemaName, tmpTableName, destTableName)); return queries.toString(); } diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopier.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopier.java index fc65fe3356f8..f3752aa6791e 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopier.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/jdbc/copy/s3/S3StreamCopier.java @@ -189,7 +189,7 @@ public String generateMergeStatement(final String destTableName) { queries.append(sqlOperations.truncateTableQuery(db, schemaName, destTableName)); LOGGER.info("Destination OVERWRITE mode detected. Dest table: {}, schema: {}, truncated.", destTableName, schemaName); } - queries.append(sqlOperations.copyTableQuery(db, schemaName, tmpTableName, destTableName)); + queries.append(sqlOperations.insertTableQuery(db, schemaName, tmpTableName, destTableName)); return queries.toString(); } diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/staging/StagingConsumerFactory.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/staging/StagingConsumerFactory.java index 550cac47d05a..a22c93b24345 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/staging/StagingConsumerFactory.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/staging/StagingConsumerFactory.java @@ -37,6 +37,9 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; +/** + * Uses both Factory and Consumer design pattern to create a single point of creation for consuming {@link AirbyteMessage} for processing + */ public class StagingConsumerFactory { private static final Logger LOGGER = LoggerFactory.getLogger(StagingConsumerFactory.class); @@ -73,6 +76,15 @@ public AirbyteMessageConsumer create(final Consumer outputRecord stagingOperations::isValidData); } + /** + * Creates a list of all {@link WriteConfig} for each stream within a {@link ConfiguredAirbyteCatalog}. Each write config represents the configuration + * settings for writing to a destination connector + * + * @param namingResolver {@link NamingConventionTransformer} used to transform names that are acceptable by each destination connector + * @param config destination connector configuration parameters + * @param catalog {@link ConfiguredAirbyteCatalog} collection of configured {@link ConfiguredAirbyteStream} + * @return list of all write configs for each stream in a {@link ConfiguredAirbyteCatalog} + */ private static List createWriteConfigs(final NamingConventionTransformer namingResolver, final JsonNode config, final ConfiguredAirbyteCatalog catalog) { @@ -139,6 +151,15 @@ private static AirbyteStreamNameNamespacePair toNameNamespacePair(final WriteCon return new AirbyteStreamNameNamespacePair(config.getStreamName(), config.getNamespace()); } + /** + * Logic handling how destinations with staging areas (aka bucket storages) will flush their buffer + * + * @param database database used for syncing + * @param stagingOperations collection of SQL queries necessary for writing data into a staging area + * @param writeConfigs configuration settings for all destination connectors needed to write + * @param catalog collection of configured streams (e.g. API endpoints or database tables) + * @return + */ private CheckedBiConsumer flushBufferFunction( final JdbcDatabase database, final StagingOperations stagingOperations, @@ -171,6 +192,18 @@ private CheckedBiConsumerMigrating data stored in staging area to temporary tables + *
  • Creates a final table (if one does not already exist)
  • + *
  • Inserts all data from the temporary table into the final table
  • + * + * @param database database used for syncing + * @param stagingOperations SQL queries used to write and delete data from the staging folder + * @param writeConfigs list of all write configs for each stream in a {@link ConfiguredAirbyteCatalog} + * @param purgeStagingData purges staging data if true otherwise data retained + * @return + */ private OnCloseFunction onCloseFunction(final JdbcDatabase database, final StagingOperations stagingOperations, final List writeConfigs, @@ -191,6 +224,7 @@ private OnCloseFunction onCloseFunction(final JdbcDatabase database, streamName, schemaName, srcTableName, dstTableName, stagingPath, writeConfig.getStagedFiles().size(), String.join(",", writeConfig.getStagedFiles())); + // Copies all the data stored in the staging files into a temporary table and creates final table if nonexistent try { stagingOperations.copyIntoTmpTableFromStage(database, stageName, stagingPath, writeConfig.getStagedFiles(), srcTableName, schemaName); } catch (final Exception e) { @@ -205,13 +239,15 @@ private OnCloseFunction onCloseFunction(final JdbcDatabase database, case APPEND, APPEND_DEDUP -> {} default -> throw new IllegalStateException("Unrecognized sync mode: " + writeConfig.getSyncMode()); } - queryList.add(stagingOperations.copyTableQuery(database, schemaName, srcTableName, dstTableName)); + queryList.add(stagingOperations.insertTableQuery(database, schemaName, srcTableName, dstTableName)); } stagingOperations.onDestinationCloseOperations(database, writeConfigs); LOGGER.info("Executing finalization of tables."); + // copies data from temporary table into final table (airbyte_raw) stagingOperations.executeTransaction(database, queryList); LOGGER.info("Finalizing tables in destination completed."); } + // After moving data from staging area to the finalized table (airybte_raw) clean up temporary tables and the staging area (if user configured) LOGGER.info("Cleaning up destination started for {} streams", writeConfigs.size()); for (final WriteConfig writeConfig : writeConfigs) { final String schemaName = writeConfig.getOutputSchemaName(); diff --git a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/staging/StagingOperations.java b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/staging/StagingOperations.java index 9ca35c7694df..f73648fa7b74 100644 --- a/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/staging/StagingOperations.java +++ b/airbyte-integrations/connectors/destination-jdbc/src/main/java/io/airbyte/integrations/destination/staging/StagingOperations.java @@ -11,8 +11,19 @@ import java.util.UUID; import org.joda.time.DateTime; +/** + * Staging operations focuses on the SQL queries that are needed to success move data into a staging environment like GCS or S3. In general, the + * reference of staging is the usage of an object storage for the purposes of efficiently uploading bulk data to destinations + */ public interface StagingOperations extends SqlOperations { + /** + * Returns the staging environment's name + * + * @param namespace Name of schema + * @param streamName Name of the stream + * @return Fully qualified name of the staging environment + */ String getStageName(String namespace, String streamName); String getStagingPath(UUID connectionId, String namespace, String streamName, DateTime writeDatetime); @@ -25,29 +36,48 @@ public interface StagingOperations extends SqlOperations { /** * Upload the data file into the stage area. * + * @param database database used for syncing + * @param recordsData records stored in in-memory buffer + * @param schemaName name of schema + * @param stageName name of the staging area folder + * @param stagingPath path of staging folder to data files * @return the name of the file that was uploaded. */ String uploadRecordsToStage(JdbcDatabase database, SerializableBuffer recordsData, String schemaName, String stageName, String stagingPath) throws Exception; /** - * Load the data stored in the stage area into a temporary table in the destination + * Load the data stored in the staging area into a temporary table in the destination + * + * @param database database used for syncing + * @param stageName name of staging area folder + * @param stagingPath path of staging folder to data files + * @param stagedFiles collection of the staging files + * @param dstTableName name of the table where staged data will be moved to + * @param schemaName name of schema */ void copyIntoTmpTableFromStage(JdbcDatabase database, String stageName, String stagingPath, List stagedFiles, - String srcTableName, + String dstTableName, String schemaName) throws Exception; /** * Remove files that were just staged + * + * @param database database used for syncing + * @param stageName name of staging area folder + * @param stagedFiles collection of the staging files to remove */ void cleanUpStage(JdbcDatabase database, String stageName, List stagedFiles) throws Exception; /** * Delete the stage area and all staged files that was in it + * + * @param database database used for syncing + * @param stageName Name of the staging area used to store files */ void dropStageIfExists(JdbcDatabase database, String stageName) throws Exception; diff --git a/airbyte-integrations/connectors/destination-kafka/src/test/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumerTest.java b/airbyte-integrations/connectors/destination-kafka/src/test/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumerTest.java index 189dc7e09c70..f348aa0efba6 100644 --- a/airbyte-integrations/connectors/destination-kafka/src/test/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-kafka/src/test/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumerTest.java @@ -16,14 +16,14 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.StandardNameTransformer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.time.Instant; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/destination-keen/src/test/java/io/airbyte/integrations/destination/keen/KeenRecordConsumerTest.java b/airbyte-integrations/connectors/destination-keen/src/test/java/io/airbyte/integrations/destination/keen/KeenRecordConsumerTest.java index 592e713b5a75..83800228f05e 100644 --- a/airbyte-integrations/connectors/destination-keen/src/test/java/io/airbyte/integrations/destination/keen/KeenRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-keen/src/test/java/io/airbyte/integrations/destination/keen/KeenRecordConsumerTest.java @@ -12,11 +12,11 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.util.List; import java.util.function.Consumer; import org.junit.jupiter.api.BeforeEach; diff --git a/airbyte-integrations/connectors/destination-local-json/src/test/java/io/airbyte/integrations/destination/local_json/LocalJsonDestinationTest.java b/airbyte-integrations/connectors/destination-local-json/src/test/java/io/airbyte/integrations/destination/local_json/LocalJsonDestinationTest.java index bd0dacfb1c04..822281c01d8a 100644 --- a/airbyte-integrations/connectors/destination-local-json/src/test/java/io/airbyte/integrations/destination/local_json/LocalJsonDestinationTest.java +++ b/airbyte-integrations/connectors/destination-local-json/src/test/java/io/airbyte/integrations/destination/local_json/LocalJsonDestinationTest.java @@ -23,6 +23,8 @@ import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.JavaBaseConstants; import io.airbyte.integrations.destination.StandardNameTransformer; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import io.airbyte.protocol.models.v0.AirbyteMessage; @@ -31,8 +33,6 @@ import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; diff --git a/airbyte-integrations/connectors/destination-mqtt/src/test/java/io/airbyte/integrations/destination/mqtt/MqttRecordConsumerTest.java b/airbyte-integrations/connectors/destination-mqtt/src/test/java/io/airbyte/integrations/destination/mqtt/MqttRecordConsumerTest.java index 4a72c34716bd..274f7b8ca75e 100644 --- a/airbyte-integrations/connectors/destination-mqtt/src/test/java/io/airbyte/integrations/destination/mqtt/MqttRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-mqtt/src/test/java/io/airbyte/integrations/destination/mqtt/MqttRecordConsumerTest.java @@ -14,6 +14,8 @@ import com.google.common.collect.Sets; import com.hivemq.testcontainer.junit5.HiveMQTestContainerExtension; import io.airbyte.commons.json.Jsons; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; @@ -22,8 +24,6 @@ import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.time.Instant; import java.util.ArrayList; import java.util.Collection; diff --git a/airbyte-integrations/connectors/destination-mssql/src/main/java/io/airbyte/integrations/destination/mssql/SqlServerOperations.java b/airbyte-integrations/connectors/destination-mssql/src/main/java/io/airbyte/integrations/destination/mssql/SqlServerOperations.java index 2d3b14056910..4283c9cf6bb3 100644 --- a/airbyte-integrations/connectors/destination-mssql/src/main/java/io/airbyte/integrations/destination/mssql/SqlServerOperations.java +++ b/airbyte-integrations/connectors/destination-mssql/src/main/java/io/airbyte/integrations/destination/mssql/SqlServerOperations.java @@ -87,7 +87,7 @@ public void insertRecords(final JdbcDatabase database, } @Override - public String copyTableQuery(final JdbcDatabase database, + public String insertTableQuery(final JdbcDatabase database, final String schemaName, final String sourceTableName, final String destinationTableName) { diff --git a/airbyte-integrations/connectors/destination-oracle/src/main/java/io/airbyte/integrations/destination/oracle/OracleOperations.java b/airbyte-integrations/connectors/destination-oracle/src/main/java/io/airbyte/integrations/destination/oracle/OracleOperations.java index 3a7899f4109e..734c4e5ef39d 100644 --- a/airbyte-integrations/connectors/destination-oracle/src/main/java/io/airbyte/integrations/destination/oracle/OracleOperations.java +++ b/airbyte-integrations/connectors/destination-oracle/src/main/java/io/airbyte/integrations/destination/oracle/OracleOperations.java @@ -151,7 +151,7 @@ private static void insertRawRecordsInSingleQuery(final String tableName, } @Override - public String copyTableQuery(final JdbcDatabase database, + public String insertTableQuery(final JdbcDatabase database, final String schemaName, final String sourceTableName, final String destinationTableName) { diff --git a/airbyte-integrations/connectors/destination-postgres/src/test/java/io/airbyte/integrations/destination/postgres/PostgresDestinationTest.java b/airbyte-integrations/connectors/destination-postgres/src/test/java/io/airbyte/integrations/destination/postgres/PostgresDestinationTest.java index 9dfb9e3ce37d..224e9b0dce61 100644 --- a/airbyte-integrations/connectors/destination-postgres/src/test/java/io/airbyte/integrations/destination/postgres/PostgresDestinationTest.java +++ b/airbyte-integrations/connectors/destination-postgres/src/test/java/io/airbyte/integrations/destination/postgres/PostgresDestinationTest.java @@ -15,6 +15,8 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteMessage.Type; @@ -22,8 +24,6 @@ import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.time.Instant; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/destination-pulsar/src/test/java/io/airbyte/integrations/destination/pulsar/PulsarRecordConsumerTest.java b/airbyte-integrations/connectors/destination-pulsar/src/test/java/io/airbyte/integrations/destination/pulsar/PulsarRecordConsumerTest.java index cf7870d64a3b..4272d6e457d0 100644 --- a/airbyte-integrations/connectors/destination-pulsar/src/test/java/io/airbyte/integrations/destination/pulsar/PulsarRecordConsumerTest.java +++ b/airbyte-integrations/connectors/destination-pulsar/src/test/java/io/airbyte/integrations/destination/pulsar/PulsarRecordConsumerTest.java @@ -17,6 +17,8 @@ import io.airbyte.integrations.base.FailureTrackingAirbyteMessageConsumer; import io.airbyte.integrations.destination.StandardNameTransformer; import io.airbyte.integrations.standardtest.destination.PerStreamStateMessageTest; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; @@ -25,8 +27,6 @@ import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.net.InetAddress; import java.net.NetworkInterface; import java.net.SocketException; diff --git a/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftInsertDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftInsertDestinationAcceptanceTest.java index 51bb358c2645..2507280914dc 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftInsertDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftInsertDestinationAcceptanceTest.java @@ -16,13 +16,13 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.JavaBaseConstants; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.JsonSchemaType; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; diff --git a/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftS3StagingInsertDestinationAcceptanceTest.java b/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftS3StagingInsertDestinationAcceptanceTest.java index 1581df320558..5e6360e32a01 100644 --- a/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftS3StagingInsertDestinationAcceptanceTest.java +++ b/airbyte-integrations/connectors/destination-redshift/src/test-integration/java/io/airbyte/integrations/destination/redshift/RedshiftS3StagingInsertDestinationAcceptanceTest.java @@ -17,13 +17,13 @@ import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; import io.airbyte.integrations.base.JavaBaseConstants; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.JsonSchemaType; import java.nio.file.Path; import java.sql.SQLException; import java.time.Instant; diff --git a/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueConsumerFactory.java b/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueConsumerFactory.java index e307e33e316d..37fc38d79782 100644 --- a/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueConsumerFactory.java +++ b/airbyte-integrations/connectors/destination-s3-glue/src/main/java/io/airbyte/integrations/destination/s3_glue/S3GlueConsumerFactory.java @@ -6,12 +6,10 @@ import com.fasterxml.jackson.databind.JsonNode; import com.google.common.base.Preconditions; - import io.airbyte.commons.functional.CheckedBiConsumer; import io.airbyte.commons.functional.CheckedBiFunction; import io.airbyte.commons.json.Jsons; import io.airbyte.integrations.base.AirbyteMessageConsumer; - import io.airbyte.integrations.destination.NamingConventionTransformer; import io.airbyte.integrations.destination.buffered_stream_consumer.BufferedStreamConsumer; import io.airbyte.integrations.destination.buffered_stream_consumer.OnCloseFunction; diff --git a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroParquetTestDataComparator.java b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroParquetTestDataComparator.java index b7b00ca782e7..23fdf59b500b 100644 --- a/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroParquetTestDataComparator.java +++ b/airbyte-integrations/connectors/destination-s3/src/test-integration/java/io/airbyte/integrations/destination/s3/S3AvroParquetTestDataComparator.java @@ -50,13 +50,13 @@ protected boolean compareTime(final String airbyteMessageValue, final String des @Override protected boolean compareString(final JsonNode expectedValue, final JsonNode actualValue) { // to handle base64 encoded strings - return expectedValue.asText().equals(actualValue.asText()) + return expectedValue.asText().equals(actualValue.asText()) || decodeBase64(expectedValue.asText()).equals(actualValue.asText()); } private String decodeBase64(String string) { - byte[] decoded = Base64.getDecoder().decode(string); - return new String(decoded, StandardCharsets.UTF_8); + byte[] decoded = Base64.getDecoder().decode(string); + return new String(decoded, StandardCharsets.UTF_8); } } diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStagingDestination.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStagingDestination.java index f2d307a845b5..d451dab54d52 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStagingDestination.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeGcsStagingDestination.java @@ -40,7 +40,7 @@ public class SnowflakeGcsStagingDestination extends AbstractJdbcDestination implements Destination { private static final Logger LOGGER = LoggerFactory.getLogger(SnowflakeGcsStagingDestination.class); - private String airbyteEnvironment; + private final String airbyteEnvironment; public SnowflakeGcsStagingDestination(final String airbyteEnvironment) { this(new SnowflakeSQLNameTransformer(), airbyteEnvironment); @@ -53,7 +53,7 @@ public SnowflakeGcsStagingDestination(final SnowflakeSQLNameTransformer nameTran @Override public AirbyteConnectionStatus check(final JsonNode config) { - GcsConfig gcsConfig = GcsConfig.getGcsConfig(config); + final GcsConfig gcsConfig = GcsConfig.getGcsConfig(config); final NamingConventionTransformer nameTransformer = getNamingResolver(); final SnowflakeGcsStagingSqlOperations snowflakeGcsStagingSqlOperations = new SnowflakeGcsStagingSqlOperations(nameTransformer, gcsConfig); @@ -112,7 +112,7 @@ protected JdbcDatabase getDatabase(final DataSource dataSource) { } @Override - protected Map getDefaultConnectionProperties(JsonNode config) { + protected Map getDefaultConnectionProperties(final JsonNode config) { return Collections.emptyMap(); } @@ -123,10 +123,10 @@ public JsonNode toJdbcConfig(final JsonNode config) { } @Override - public AirbyteMessageConsumer getConsumer(JsonNode config, - ConfiguredAirbyteCatalog catalog, - Consumer outputRecordCollector) { - GcsConfig gcsConfig = GcsConfig.getGcsConfig(config); + public AirbyteMessageConsumer getConsumer(final JsonNode config, + final ConfiguredAirbyteCatalog catalog, + final Consumer outputRecordCollector) { + final GcsConfig gcsConfig = GcsConfig.getGcsConfig(config); return new StagingConsumerFactory().create( outputRecordCollector, getDatabase(getDataSource(config)), diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingSqlOperations.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingSqlOperations.java index 8b9b4842dde6..e1765ecbd5bf 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingSqlOperations.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingSqlOperations.java @@ -114,6 +114,14 @@ private boolean checkStageObjectExists(final JdbcDatabase database, final String return result; } + /** + * Creates a SQL query to list all files that have been staged + * + * @param stageName name of staging folder + * @param stagingPath path to the files within the staging folder + * @param filename name of the file within staging area + * @return SQL query string + */ protected String getListQuery(final String stageName, final String stagingPath, final String filename) { return String.format(LIST_STAGE_QUERY, stageName, stagingPath, filename).replaceAll("/+", "/"); } @@ -125,6 +133,12 @@ public void createStageIfNotExists(final JdbcDatabase database, final String sta database.execute(query); } + /** + * Creates a SQL query to create a staging folder. This query will create a staging folder if one previously did not exist + * + * @param stageName name of the staging folder + * @return SQL query string + */ protected String getCreateStageQuery(final String stageName) { return String.format(CREATE_STAGE_QUERY, stageName); } @@ -142,6 +156,17 @@ public void copyIntoTmpTableFromStage(final JdbcDatabase database, database.execute(query); } + /** + * Creates a SQL query to bulk copy data into fully qualified destination table + * See https://docs.snowflake.com/en/sql-reference/sql/copy-into-table.html for more context + * + * @param stageName name of staging folder + * @param stagingPath path of staging folder to data files + * @param stagedFiles collection of the staging files + * @param dstTableName name of destination table + * @param schemaName name of schema + * @return SQL query string + */ protected String getCopyQuery(final String stageName, final String stagingPath, final List stagedFiles, @@ -157,6 +182,12 @@ public void dropStageIfExists(final JdbcDatabase database, final String stageNam database.execute(query); } + /** + * Creates a SQL query to drop staging area and all associated files within the staged area + * + * @param stageName name of staging folder + * @return SQL query string + */ protected String getDropQuery(final String stageName) { return String.format(DROP_STAGE_QUERY, stageName); } @@ -168,6 +199,13 @@ public void cleanUpStage(final JdbcDatabase database, final String stageName, fi database.execute(query); } + /** + * Creates a SQL query used to remove staging files that were just staged + * See https://docs.snowflake.com/en/sql-reference/sql/remove.html for more context + * + * @param stageName name of staging folder + * @return SQL query string + */ protected String getRemoveQuery(final String stageName) { return String.format(REMOVE_QUERY, stageName); } diff --git a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StagingDestination.java b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StagingDestination.java index b08dd00d47b1..ead94c94ba9e 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StagingDestination.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeS3StagingDestination.java @@ -34,7 +34,7 @@ public class SnowflakeS3StagingDestination extends AbstractJdbcDestination implements Destination { private static final Logger LOGGER = LoggerFactory.getLogger(SnowflakeS3StagingDestination.class); - private String airbyteEnvironment; + private final String airbyteEnvironment; public SnowflakeS3StagingDestination(final String airbyteEnvironment) { this(new SnowflakeSQLNameTransformer(), airbyteEnvironment); diff --git a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestinationTest.java b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestinationTest.java index a4172e66ffee..7d60c7e4cb9c 100644 --- a/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestinationTest.java +++ b/airbyte-integrations/connectors/destination-snowflake/src/test/java/io/airbyte/integrations/destination/snowflake/SnowflakeDestinationTest.java @@ -31,13 +31,13 @@ import io.airbyte.integrations.destination.s3.csv.CsvSerializedBuffer; import io.airbyte.integrations.destination.snowflake.SnowflakeDestination.DestinationType; import io.airbyte.integrations.destination.staging.StagingConsumerFactory; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.sql.SQLException; import java.time.Instant; import java.util.List; diff --git a/airbyte-integrations/connectors/destination-tidb/src/test/java/io/airbyte/integrations/destination/tidb/TiDBDestinationTest.java b/airbyte-integrations/connectors/destination-tidb/src/test/java/io/airbyte/integrations/destination/tidb/TiDBDestinationTest.java index 09e58cdae0ff..d6bcd5488bd3 100644 --- a/airbyte-integrations/connectors/destination-tidb/src/test/java/io/airbyte/integrations/destination/tidb/TiDBDestinationTest.java +++ b/airbyte-integrations/connectors/destination-tidb/src/test/java/io/airbyte/integrations/destination/tidb/TiDBDestinationTest.java @@ -17,14 +17,14 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.base.AirbyteMessageConsumer; import io.airbyte.integrations.base.Destination; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.time.Instant; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/source-babelforce/source_babelforce/schemas/calls.json b/airbyte-integrations/connectors/source-babelforce/source_babelforce/schemas/calls.json index 68fe93640deb..1877cbc7e490 100644 --- a/airbyte-integrations/connectors/source-babelforce/source_babelforce/schemas/calls.json +++ b/airbyte-integrations/connectors/source-babelforce/source_babelforce/schemas/calls.json @@ -3,12 +3,12 @@ "type": "object", "properties": { "id": { - "maxLength": 32, - "type": "string" + "maxLength": 32, + "type": "string" }, "parentId": { "maxLength": 32, - "type": ["string", "null"] + "type": ["string", "null"] }, "sessionId": { "maxLength": 32, @@ -24,17 +24,11 @@ }, "dateEstablished": { "format": "date-time", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "dateFinished": { "format": "date-time", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "lastUpdated": { "type": "string", @@ -49,16 +43,10 @@ "type": "string" }, "from": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "to": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "type": { "maxLength": 256, @@ -73,106 +61,79 @@ "type": "string" }, "duration": { - "type": [ - "integer", - "null" - ] + "type": ["integer", "null"] }, "anonymous": { - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "recordings": { "type": ["array", "null"], "items": { "type": "object", "properties": { - "id": { - "maxLength": 32, - "type": "string" - }, - "dateCreated": { - "type": "string", - "format": "date-time" - }, - "lastUpdated": { - "type": "string", - "format": "date-time" - }, - "duration": { - "type": "integer" - }, - "url": { + "id": { + "maxLength": 32, + "type": "string" + }, + "dateCreated": { + "type": "string", + "format": "date-time" + }, + "lastUpdated": { + "type": "string", + "format": "date-time" + }, + "duration": { + "type": "integer" + }, + "url": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "string" + } + }, + "file": { + "type": ["object", "null"], + "properties": { + "id": { + "maxLength": 32, + "type": "string" + }, + "state": { + "type": ["string", "null"] + }, + "name": { + "type": ["string", "null"] + }, + "size": { + "type": ["integer", "null"] + }, + "contentType": { + "type": ["string", "null"] } - }, - "file": { - "type": ["object", "null"], - "properties": { - "id": { - "maxLength": 32, - "type": "string" - }, - "state": { - "type": [ - "string", - "null" - ] - }, - "name": { - "type": [ - "string", - "null" - ] - }, - "size": { - "type": [ - "integer", - "null" - ] - }, - "contentType": { - "type": [ - "string", - "null" - ] - } - } - }, - "state": { - "maxLength": 256, - "type": "string" - }, - "agent": { - "type": "object", - "properties": { - "id": { - "type": [ - "string", - "null" - ] - }, - "name": { - "type": [ - "string", - "null" - ] - }, - "number": { - "type": [ - "string", - "null" - ] - } + } + }, + "state": { + "maxLength": 256, + "type": "string" + }, + "agent": { + "type": "object", + "properties": { + "id": { + "type": ["string", "null"] + }, + "name": { + "type": ["string", "null"] + }, + "number": { + "type": ["string", "null"] } - } + } + } } } }, @@ -180,22 +141,13 @@ "type": ["object", "null"], "properties": { "id": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "name": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "number": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] } } } diff --git a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/configured_catalog.json index 806936cf8fc3..2e278a21cef5 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-bigcommerce/integration_tests/configured_catalog.json @@ -1933,14 +1933,9 @@ } } }, - "supported_sync_modes": [ - "incremental", - "full_refresh" - ], + "supported_sync_modes": ["incremental", "full_refresh"], "source_defined_cursor": true, - "default_cursor_field": [ - "id" - ] + "default_cursor_field": ["id"] }, "sync_mode": "incremental", "cursor_field": ["id"], diff --git a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json index b364df0029bb..f2927892c12c 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json +++ b/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/schemas/order_products.json @@ -3,346 +3,175 @@ "type": "object", "properties": { "id": { - "type": [ - "null", - "integer" - ] + "type": ["null", "integer"] }, "order_id": { - "type": [ - "null", - "integer" - ] + "type": ["null", "integer"] }, "product_id": { - "type": [ - "null", - "integer" - ] + "type": ["null", "integer"] }, "variant_id": { - "type": [ - "null", - "integer" - ] + "type": ["null", "integer"] }, "order_address_id": { - "type": [ - "null", - "integer" - ] + "type": ["null", "integer"] }, "name": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "name_customer": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "name_merchant": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "sku": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "upc": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "type": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "base_price": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "price_ex_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "price_inc_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "price_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "base_total": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "total_ex_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "total_inc_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "total_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "weight": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "width": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "height": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "depth": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "quantity": { - "type": [ - "null", - "number" - ] + "type": ["null", "number"] }, "base_cost_price": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "cost_price_inc_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "cost_price_ex_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "cost_price_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "is_refunded": { - "type": [ - "null", - "boolean" - ] + "type": ["null", "boolean"] }, "quantity_refunded": { - "type": [ - "null", - "number" - ] + "type": ["null", "number"] }, "refund_amount": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "return_id": { - "type": [ - "null", - "number" - ] + "type": ["null", "number"] }, "wrapping_id": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "wrapping_name": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "base_wrapping_cost": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "wrapping_cost_ex_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "wrapping_cost_inc_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "wrapping_cost_tax": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "wrapping_message": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "quantity_shipped": { - "type": [ - "null", - "number" - ] + "type": ["null", "number"] }, "event_name": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "event_date": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "fixed_shipping_cost": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "ebay_item_id": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "ebay_transaction_id": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "option_set_id": { - "type": [ - "null", - "integer" - ] + "type": ["null", "integer"] }, "parent_order_product_id": { - "type": [ - "null", - "integer" - ] + "type": ["null", "integer"] }, "is_bundled_product": { - "type": [ - "null", - "boolean" - ] + "type": ["null", "boolean"] }, "bin_picking_number": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "external_id": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "fulfillment_source": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "brand": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "gift_certificate_id": { - "type": [ - "null", - "integer" - ] + "type": ["null", "integer"] }, "applied_discounts": { - "type": [ - "null", - "array" - ] + "type": ["null", "array"] }, "applied_discounts": { - "type": [ - "null", - "array" - ] + "type": ["null", "array"] }, "product_options": { - "type": [ - "null", - "array" - ] + "type": ["null", "array"] }, "configurable_fields": { - "type": [ - "null", - "array" - ] + "type": ["null", "array"] } } } diff --git a/airbyte-integrations/connectors/source-bigquery/integration_tests/basic_dataset.sql b/airbyte-integrations/connectors/source-bigquery/integration_tests/basic_dataset.sql index b87f8a5efb08..dfc41293a5f9 100644 --- a/airbyte-integrations/connectors/source-bigquery/integration_tests/basic_dataset.sql +++ b/airbyte-integrations/connectors/source-bigquery/integration_tests/basic_dataset.sql @@ -1,33 +1,238 @@ -CREATE TABLE - `sat_test_dataset.sat_basic_dataset`(id NUMERIC(29), - test_column_1 int64, - test_column_10 decimal(29, - 9), - test_column_11 bigdecimal(76, - 38), - test_column_12 float64, - test_column_13 bool, - test_column_15 date, - test_column_16 datetime, - test_column_17 timestamp, - test_column_19 string, - test_column_2 int, - test_column_21 time, - test_column_3 smallint, - test_column_4 integer, - test_column_5 bigint, - test_column_6 tinyint, - test_column_7 byteint, - test_column_8 numeric(29, - 9), - test_column_9 bignumeric(76, - 38) ); +CREATE + TABLE + ` sat_test_dataset.sat_basic_dataset `( + id NUMERIC(29), + test_column_1 int64, + test_column_10 DECIMAL( + 29, + 9 + ), + test_column_11 bigdecimal( + 76, + 38 + ), + test_column_12 float64, + test_column_13 bool, + test_column_15 DATE, + test_column_16 datetime, + test_column_17 TIMESTAMP, + test_column_19 string, + test_column_2 INT, + test_column_21 TIME, + test_column_3 SMALLINT, + test_column_4 INTEGER, + test_column_5 BIGINT, + test_column_6 tinyint, + test_column_7 byteint, + test_column_8 NUMERIC( + 29, + 9 + ), + test_column_9 bignumeric( + 76, + 38 + ) + ); +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 1, + - 128, + - 128, + - 128, + - 128, + TRUE, + DATE('2021-10-20'), + datetime('2021-10-20 11:22:33'), + TIMESTAMP('2021-10-20 11:22:33'), + 'qwe', + - 128, + TIME( + 15, + 30, + 00 + ), + - 128, + - 128, + - 128, + - 128, + - 128, + - 128, + - 128 + ); -INSERT INTO sat_test_dataset.sat_basic_dataset VALUES (1, -128, -128, -128, -128, true, date('2021-10-20'), datetime('2021-10-20 11:22:33'), timestamp('2021-10-20 11:22:33'), 'qwe', -128, TIME(15, 30, 00), -128, -128, -128, -128, -128, -128, -128); -INSERT INTO sat_test_dataset.sat_basic_dataset VALUES (2, 127, 127, 127, 127, false, date('9999-12-31'), datetime('9999-12-31 11:22:33'), timestamp('2021-10-20 11:22:33'), 'йцу', 127, TIME(15, 30, 00), 127, 127, 127, 127, 127, 127, 127); -INSERT INTO sat_test_dataset.sat_basic_dataset VALUES (3, 9223372036854775807, 999999999999999999, 999999999999999999, 0.123456789, false, date('0001-01-01'), datetime('0001-01-01 11:22:33'), timestamp('2021-10-20 11:22:33'), 'йцу', 127, TIME(15, 30, 00), 127, 127, 127, 127, 127, 999999999999999999, 999999999999999999); -INSERT INTO sat_test_dataset.sat_basic_dataset VALUES (4, -9223372036854775808, -999999999999999999, -999999999999999999, -0.123456789, false, date('0001-01-01'), datetime('0001-01-01 11:22:33'), timestamp('2021-10-20 11:22:33'), 'йцу', 127, TIME(15, 30, 00), 127, 127, 127, 127, 127, -999999999999999999, -999999999999999999); -INSERT INTO sat_test_dataset.sat_basic_dataset VALUES (5, -9223372036854775808, 0.123456789, 0.123456789, -0.123456789, false, date('0001-01-01'), datetime('0001-01-01 11:22:33'), timestamp('2021-10-20 11:22:33'), 'йцу', 127, TIME(15, 30, 00), 127, 127, 127, 127, 127, 0.123456789, 0.123456789); -INSERT INTO sat_test_dataset.sat_basic_dataset VALUES (6, -9223372036854775808, -0.123456789, -0.123456789, -0.123456789, false, date('0001-01-01'), datetime('0001-01-01 11:22:33'), timestamp('2021-10-20 11:22:33'), 'йцу', 127, TIME(15, 30, 00), 127, 127, 127, 127, 127, -0.123456789, -0.123456789); -INSERT INTO sat_test_dataset.sat_basic_dataset VALUES (7, -9223372036854775808, -0.123456789, -0.123456789, -0.123456789, false, date('0001-01-01'), datetime('0001-01-01 11:22:33'), timestamp('2021-10-20 11:22:33'), 'йцу', 127, TIME(15, 30, 00), 127, 127, 127, 127, 127, -0.123456789, -0.123456789); +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 2, + 127, + 127, + 127, + 127, + FALSE, + DATE('9999-12-31'), + datetime('9999-12-31 11:22:33'), + TIMESTAMP('2021-10-20 11:22:33'), + 'йцу', + 127, + TIME( + 15, + 30, + 00 + ), + 127, + 127, + 127, + 127, + 127, + 127, + 127 + ); + +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 3, + 9223372036854775807, + 999999999999999999, + 999999999999999999, + 0.123456789, + FALSE, + DATE('0001-01-01'), + datetime('0001-01-01 11:22:33'), + TIMESTAMP('2021-10-20 11:22:33'), + 'йцу', + 127, + TIME( + 15, + 30, + 00 + ), + 127, + 127, + 127, + 127, + 127, + 999999999999999999, + 999999999999999999 + ); + +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 4, + - 9223372036854775808, + - 999999999999999999, + - 999999999999999999, + - 0.123456789, + FALSE, + DATE('0001-01-01'), + datetime('0001-01-01 11:22:33'), + TIMESTAMP('2021-10-20 11:22:33'), + 'йцу', + 127, + TIME( + 15, + 30, + 00 + ), + 127, + 127, + 127, + 127, + 127, + - 999999999999999999, + - 999999999999999999 + ); + +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 5, + - 9223372036854775808, + 0.123456789, + 0.123456789, + - 0.123456789, + FALSE, + DATE('0001-01-01'), + datetime('0001-01-01 11:22:33'), + TIMESTAMP('2021-10-20 11:22:33'), + 'йцу', + 127, + TIME( + 15, + 30, + 00 + ), + 127, + 127, + 127, + 127, + 127, + 0.123456789, + 0.123456789 + ); + +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 6, + - 9223372036854775808, + - 0.123456789, + - 0.123456789, + - 0.123456789, + FALSE, + DATE('0001-01-01'), + datetime('0001-01-01 11:22:33'), + TIMESTAMP('2021-10-20 11:22:33'), + 'йцу', + 127, + TIME( + 15, + 30, + 00 + ), + 127, + 127, + 127, + 127, + 127, + - 0.123456789, + - 0.123456789 + ); + +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 7, + - 9223372036854775808, + - 0.123456789, + - 0.123456789, + - 0.123456789, + FALSE, + DATE('0001-01-01'), + datetime('0001-01-01 11:22:33'), + TIMESTAMP('2021-10-20 11:22:33'), + 'йцу', + 127, + TIME( + 15, + 30, + 00 + ), + 127, + 127, + 127, + 127, + 127, + - 0.123456789, + - 0.123456789 + ); diff --git a/airbyte-integrations/connectors/source-bigquery/integration_tests/full_dataset.sql b/airbyte-integrations/connectors/source-bigquery/integration_tests/full_dataset.sql index 2bae50237ede..aa612da433c8 100644 --- a/airbyte-integrations/connectors/source-bigquery/integration_tests/full_dataset.sql +++ b/airbyte-integrations/connectors/source-bigquery/integration_tests/full_dataset.sql @@ -1,47 +1,326 @@ -CREATE TABLE - sat_test_dataset.sat_full_dataset(id NUMERIC(29), - test_column_1 int64, - test_column_10 decimal(29, - 9), - test_column_11 bigdecimal(76, - 38), - test_column_12 float64, - test_column_13 bool, - test_column_14 bytes, - test_column_15 date, - test_column_16 datetime, - test_column_17 timestamp, - test_column_18 geography, - test_column_19 string, - test_column_2 int, - test_column_20 STRUCT, - test_column_21 time, - test_column_22 ARRAY, - test_column_23 STRUCT>>, - test_column_24 ARRAY>, - test_column_25 ARRAY>>>, - test_column_26 INTERVAL, - test_column_3 smallint, - test_column_4 integer, - test_column_5 bigint, - test_column_6 tinyint, - test_column_7 byteint, - test_column_8 numeric(29, - 9), - test_column_9 bignumeric(76, - 38) ); +CREATE + TABLE + sat_test_dataset.sat_full_dataset( + id NUMERIC(29), + test_column_1 int64, + test_column_10 DECIMAL( + 29, + 9 + ), + test_column_11 bigdecimal( + 76, + 38 + ), + test_column_12 float64, + test_column_13 bool, + test_column_14 bytes, + test_column_15 DATE, + test_column_16 datetime, + test_column_17 TIMESTAMP, + test_column_18 geography, + test_column_19 string, + test_column_2 INT, + test_column_20 STRUCT < course STRING, + id INT64 >, + test_column_21 TIME, + test_column_22 ARRAY , + test_column_23 STRUCT < frst String, + sec int64, + obbj STRUCT < id_col int64, + mega_obbj STRUCT < last_col TIME >>>, + test_column_24 ARRAY < STRUCT < fff String, + ggg int64 >>, + test_column_25 ARRAY < STRUCT < fff String, + ggg ARRAY < STRUCT < ooo String, + kkk int64 >>>>, + test_column_26 INTERVAL, + test_column_3 SMALLINT, + test_column_4 INTEGER, + test_column_5 BIGINT, + test_column_6 tinyint, + test_column_7 byteint, + test_column_8 NUMERIC( + 29, + 9 + ), + test_column_9 bignumeric( + 76, + 38 + ) + ); -INSERT INTO sat_test_dataset.sat_full_dataset VALUES (1, null, null, null, null, true, FROM_BASE64("test"), date('2021-10-20'), datetime('2021-10-20 11:22:33'), timestamp('2021-10-20 11:22:33'), ST_GEOGFROMTEXT('POINT(1 2)'), 'qwe', null, STRUCT("B.A",12), TIME(15, 30, 00), ['a', 'b'], STRUCT('s' as frst, 1 as sec, STRUCT(555 as id_col, STRUCT(TIME(15, 30, 00) as time) as mega_obbj) as obbj), [STRUCT('qqq' as fff, 1 as ggg), STRUCT('kkk' as fff, 2 as ggg)], [STRUCT('qqq' as fff, [STRUCT('fff' as ooo, 1 as kkk), STRUCT('hhh' as ooo, 2 as kkk)] as ggg)], MAKE_INTERVAL(2021, 10, 10, 10, 10, 10), null, null, null, null, null, null, null); -INSERT INTO sat_test_dataset.sat_full_dataset VALUES (2, -128, -128, -128, -128, false, null, date('9999-12-31'), datetime('9999-12-31 11:22:33'), null, null, 'йцу', -128, null, null, null, null, null, null, null, -128, -128, -128, -128, -128, -128, -128); -INSERT INTO sat_test_dataset.sat_full_dataset VALUES (3, 127, 127, 127, 127, null, null, date('0001-01-01'), datetime('0001-01-01 11:22:33'), null, null, null, 127, null, null, null, null, null, null, null, 127, 127, 127, 127, 127, 127, 127); -INSERT INTO sat_test_dataset.sat_full_dataset VALUES (4, 9223372036854775807, 999999999999999999, 999999999999999999, 0.123456789, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 999999999999999999, 999999999999999999); -INSERT INTO sat_test_dataset.sat_full_dataset VALUES (5, -9223372036854775808, -999999999999999999, -999999999999999999, -0.123456789, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, -999999999999999999, -999999999999999999); -INSERT INTO sat_test_dataset.sat_full_dataset VALUES (6, null, 0.123456789, 0.123456789, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 0.123456789, 0.123456789); -INSERT INTO sat_test_dataset.sat_full_dataset VALUES (7, null, -0.123456789, -0.123456789, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, -0.123456789, -0.123456789); +INSERT + INTO + sat_test_dataset.sat_full_dataset + VALUES( + 1, + NULL, + NULL, + NULL, + NULL, + TRUE, + FROM_BASE64("test"), + DATE('2021-10-20'), + datetime('2021-10-20 11:22:33'), + TIMESTAMP('2021-10-20 11:22:33'), + ST_GEOGFROMTEXT('POINT(1 2)'), + 'qwe', + NULL, + STRUCT( + "B.A", + 12 + ), + TIME( + 15, + 30, + 00 + ), + [ 'a', + 'b' ], + STRUCT( + 's' AS frst, + 1 AS sec, + STRUCT( + 555 AS id_col, + STRUCT( + TIME( + 15, + 30, + 00 + ) AS TIME + ) AS mega_obbj + ) AS obbj + ), + [ STRUCT( + 'qqq' AS fff, + 1 AS ggg + ), + STRUCT( + 'kkk' AS fff, + 2 AS ggg + )], + [ STRUCT( + 'qqq' AS fff, + [ STRUCT( + 'fff' AS ooo, + 1 AS kkk + ), + STRUCT( + 'hhh' AS ooo, + 2 AS kkk + )] AS ggg + )], + MAKE_INTERVAL( + 2021, + 10, + 10, + 10, + 10, + 10 + ), + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL + ); + +INSERT + INTO + sat_test_dataset.sat_full_dataset + VALUES( + 2, + - 128, + - 128, + - 128, + - 128, + FALSE, + NULL, + DATE('9999-12-31'), + datetime('9999-12-31 11:22:33'), + NULL, + NULL, + 'йцу', + - 128, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + - 128, + - 128, + - 128, + - 128, + - 128, + - 128, + - 128 + ); + +INSERT + INTO + sat_test_dataset.sat_full_dataset + VALUES( + 3, + 127, + 127, + 127, + 127, + NULL, + NULL, + DATE('0001-01-01'), + datetime('0001-01-01 11:22:33'), + NULL, + NULL, + NULL, + 127, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + 127, + 127, + 127, + 127, + 127, + 127, + 127 + ); + +INSERT + INTO + sat_test_dataset.sat_full_dataset + VALUES( + 4, + 9223372036854775807, + 999999999999999999, + 999999999999999999, + 0.123456789, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + 999999999999999999, + 999999999999999999 + ); + +INSERT + INTO + sat_test_dataset.sat_full_dataset + VALUES( + 5, + - 9223372036854775808, + - 999999999999999999, + - 999999999999999999, + - 0.123456789, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + - 999999999999999999, + - 999999999999999999 + ); + +INSERT + INTO + sat_test_dataset.sat_full_dataset + VALUES( + 6, + NULL, + 0.123456789, + 0.123456789, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + 0.123456789, + 0.123456789 + ); + +INSERT + INTO + sat_test_dataset.sat_full_dataset + VALUES( + 7, + NULL, + - 0.123456789, + - 0.123456789, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL, + - 0.123456789, + - 0.123456789 + ); diff --git a/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQuerySourceEscapeColumnNameTest.java b/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQuerySourceEscapeColumnNameTest.java index ccc40d7aa4b6..fe1136cff4e1 100644 --- a/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQuerySourceEscapeColumnNameTest.java +++ b/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQuerySourceEscapeColumnNameTest.java @@ -9,11 +9,11 @@ import static org.junit.jupiter.api.Assertions.assertNotNull; import io.airbyte.commons.util.MoreIterators; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.sql.SQLException; import java.util.List; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQueryStructureSourceTest.java b/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQueryStructureSourceTest.java index facaca1f6255..403c7965fb4f 100644 --- a/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQueryStructureSourceTest.java +++ b/airbyte-integrations/connectors/source-bigquery/src/test-integration/java/io/airbyte/integrations/source/bigquery/BigQueryStructureSourceTest.java @@ -9,11 +9,11 @@ import static org.junit.jupiter.api.Assertions.assertNotNull; import io.airbyte.commons.util.MoreIterators; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.sql.SQLException; import java.util.List; import org.junit.jupiter.api.Test; diff --git a/airbyte-integrations/connectors/source-braze/.dockerignore b/airbyte-integrations/connectors/source-braze/.dockerignore new file mode 100644 index 000000000000..18cce2422379 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/.dockerignore @@ -0,0 +1,6 @@ +* +!Dockerfile +!main.py +!source_braze +!setup.py +!secrets diff --git a/airbyte-integrations/connectors/source-braze/Dockerfile b/airbyte-integrations/connectors/source-braze/Dockerfile new file mode 100644 index 000000000000..349a54f07f0b --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/Dockerfile @@ -0,0 +1,38 @@ +FROM python:3.9.11-alpine3.15 as base + +# build and load all requirements +FROM base as builder +WORKDIR /airbyte/integration_code + +# upgrade pip to the latest version +RUN apk --no-cache upgrade \ + && pip install --upgrade pip \ + && apk --no-cache add tzdata build-base + + +COPY setup.py ./ +# install necessary packages to a temporary folder +RUN pip install --prefix=/install . + +# build a clean environment +FROM base +WORKDIR /airbyte/integration_code + +# copy all loaded and built libraries to a pure basic image +COPY --from=builder /install /usr/local +# add default timezone settings +COPY --from=builder /usr/share/zoneinfo/Etc/UTC /etc/localtime +RUN echo "Etc/UTC" > /etc/timezone + +# bash is installed for more convenient debugging. +RUN apk --no-cache add bash + +# copy payload code only +COPY main.py ./ +COPY source_braze ./source_braze + +ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" +ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] + +LABEL io.airbyte.version=0.1.3 +LABEL io.airbyte.name=airbyte/source-braze diff --git a/airbyte-integrations/connectors/source-braze/README.md b/airbyte-integrations/connectors/source-braze/README.md new file mode 100644 index 000000000000..e18943ed1cd7 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/README.md @@ -0,0 +1,82 @@ +# Braze Source + +This is the repository for the Braze configuration based source connector. +For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/braze). + +## Local development + +#### Building via Gradle +You can also build the connector in Gradle. This is typically used in CI and not needed for your development workflow. + +To build using Gradle, from the Airbyte repository root, run: +``` +./gradlew :airbyte-integrations:connectors:source-braze:build +``` + +#### Create credentials +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/braze) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_braze/spec.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. +See `integration_tests/sample_config.json` for a sample config file. + +**If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `source braze test creds` +and place them into `secrets/config.json`. + +### Locally running the connector docker image + +#### Build +First, make sure you build the latest Docker image: +``` +docker build . -t airbyte/source-braze:dev +``` + +You can also build the connector image via Gradle: +``` +./gradlew :airbyte-integrations:connectors:source-braze:airbyteDocker +``` +When building via Gradle, the docker image name and tag, respectively, are the values of the `io.airbyte.name` and `io.airbyte.version` `LABEL`s in +the Dockerfile. + +#### Run +Then run any of the connector commands as follows: +``` +docker run --rm airbyte/source-braze:dev spec +docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-braze:dev check --config /secrets/config.json +docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-braze:dev discover --config /secrets/config.json +docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-braze:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json +``` +## Testing + +#### Acceptance Tests +Customize `acceptance-test-config.yml` file to configure tests. See [Source Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/source-acceptance-tests-reference) for more information. +If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. + +To run your integration tests with Docker, run: +``` +./acceptance-test-docker.sh +``` + +### Using gradle to run tests +All commands should be run from airbyte project root. +To run unit tests: +``` +./gradlew :airbyte-integrations:connectors:source-braze:unitTest +``` +To run acceptance and custom integration tests: +``` +./gradlew :airbyte-integrations:connectors:source-braze:integrationTest +``` + +## Dependency Management +All of your dependencies should go in `setup.py`, NOT `requirements.txt`. The requirements file is only used to connect internal Airbyte dependencies in the monorepo for local development. +We split dependencies between two groups, dependencies that are: +* required for your connector to work need to go to `MAIN_REQUIREMENTS` list. +* required for the testing need to go to `TEST_REQUIREMENTS` list + +### Publishing a new version of the connector +You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? +1. Make sure your changes are passing unit and integration tests. +1. Bump the connector version in `Dockerfile` -- just increment the value of the `LABEL io.airbyte.version` appropriately (we use [SemVer](https://semver.org/)). +1. Create a Pull Request. +1. Pat yourself on the back for being an awesome contributor. +1. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. diff --git a/airbyte-integrations/connectors/source-braze/__init__.py b/airbyte-integrations/connectors/source-braze/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-braze/acceptance-test-config.yml b/airbyte-integrations/connectors/source-braze/acceptance-test-config.yml new file mode 100644 index 000000000000..357d55198c5d --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/acceptance-test-config.yml @@ -0,0 +1,49 @@ +# See [Source Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/source-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-braze:dev +acceptance_tests: + spec: + tests: + - spec_path: "source_braze/spec.yaml" + connection: + tests: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" + discovery: + tests: + - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.0" + basic_read: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + empty_streams: + - name: kpi_daily_new_users + bypass_reason: "no data" + - name: events_analytics + bypass_reason: "no data" + - name: kpi_daily_app_uninstalls + bypass_reason: "no data" + - name: kpi_daily_active_users + bypass_reason: "no data" + expect_records: + # `cards_analytics` stream records are not included to `expected_records.txt` + # This stream returns summary by given `ending_at` date + `length`, and so + # as `ending_at` date depends on a day when tests run, we lose previous records in current response and tests fail. + path: "integration_tests/expected_records.txt" + extra_fields: no + exact_order: no + extra_records: yes + incremental: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + future_state: + future_state_path: "integration_tests/abnormal_state.json" + full_refresh: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-braze/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-braze/acceptance-test-docker.sh new file mode 100755 index 000000000000..c51577d10690 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/acceptance-test-docker.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh + +# Build latest connector image +docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2-) + +# Pull latest acctest image +docker pull airbyte/source-acceptance-test:latest + +# Run +docker run --rm -it \ + -v /var/run/docker.sock:/var/run/docker.sock \ + -v /tmp:/tmp \ + -v $(pwd):/test_input \ + airbyte/source-acceptance-test \ + --acceptance-test-config /test_input + diff --git a/airbyte-integrations/connectors/source-braze/build.gradle b/airbyte-integrations/connectors/source-braze/build.gradle new file mode 100644 index 000000000000..06787f04df74 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/build.gradle @@ -0,0 +1,9 @@ +plugins { + id 'airbyte-python' + id 'airbyte-docker' + id 'airbyte-source-acceptance-test' +} + +airbytePython { + moduleDirectory 'source_braze' +} diff --git a/airbyte-integrations/connectors/source-braze/integration_tests/__init__.py b/airbyte-integrations/connectors/source-braze/integration_tests/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/integration_tests/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-braze/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-braze/integration_tests/abnormal_state.json new file mode 100644 index 000000000000..ac1e946b5e4a --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/integration_tests/abnormal_state.json @@ -0,0 +1,26 @@ +{ + "campaigns_analytics": { + "time": "2050-12-13", + "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a" + }, + "canvases_analytics": { + "time": "2050-12-13", + "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2" + }, + "events_analytics": { + }, + "kpi_daily_new_users": { + }, + "kpi_daily_active_users": { + }, + "kpi_daily_app_uninstalls": { + }, + "cards_analytics": { + "time": "2050-12-13", + "card_id": "609e4d4c-367b-4c87-a8ad-b1f903d058fd" + }, + "segments_analytics": { + "time": "2050-12-13", + "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c" + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-braze/integration_tests/acceptance.py b/airbyte-integrations/connectors/source-braze/integration_tests/acceptance.py new file mode 100644 index 000000000000..1302b2f57e10 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/integration_tests/acceptance.py @@ -0,0 +1,16 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +import pytest + +pytest_plugins = ("source_acceptance_test.plugin",) + + +@pytest.fixture(scope="session", autouse=True) +def connector_setup(): + """This fixture is a placeholder for external resources that acceptance test might require.""" + # TODO: setup test dependencies if needed. otherwise remove the TODO comments + yield + # TODO: clean up test dependencies diff --git a/airbyte-integrations/connectors/source-braze/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-braze/integration_tests/configured_catalog.json new file mode 100644 index 000000000000..27548a469018 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/integration_tests/configured_catalog.json @@ -0,0 +1,121 @@ +{ + "streams": [ + { + "stream": { + "name": "campaigns", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "campaigns_analytics", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "canvases", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "canvases_analytics", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "events", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "events_analytics", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "kpi_daily_new_users", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "kpi_daily_active_users", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "kpi_daily_app_uninstalls", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "cards", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "cards_analytics", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "segments", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "segments_analytics", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + } + ] +} diff --git a/airbyte-integrations/connectors/source-braze/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-braze/integration_tests/expected_records.txt new file mode 100644 index 000000000000..baa7b69fbfc1 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/integration_tests/expected_records.txt @@ -0,0 +1,2336 @@ +{"stream": "campaigns", "data": {"id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b", "name": "Test Campaign", "is_api_campaign": false, "tags": ["airbyte", "test"], "last_edited": "2022-11-29T14:59:02+00:00"}, "emitted_at": 1671100929032} +{"stream": "campaigns", "data": {"id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a", "name": "Test Push Campaign", "is_api_campaign": false, "tags": ["airbyte", "push"], "last_edited": "2022-12-14T11:24:15+00:00"}, "emitted_at": 1671100929033} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-01", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931646} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-02", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931649} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-03", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931651} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-04", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931653} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-05", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931655} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-06", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931658} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-07", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931660} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-08", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931662} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-09", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931664} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-10", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931667} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-11", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931669} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-12", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931671} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-13", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931674} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-14", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931676} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-15", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931678} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-16", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931681} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-17", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931683} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-18", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931687} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-19", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931690} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-20", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931693} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-21", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931695} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-22", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931697} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-23", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931700} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-24", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931702} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-25", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931704} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-26", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931706} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-27", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931709} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-28", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931711} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-29", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931713} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-30", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931715} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-01", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931718} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-02", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931720} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-03", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931722} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-04", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931725} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-05", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931727} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-06", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931729} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-07", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931731} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-08", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931734} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-09", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931736} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-10", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931738} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-11", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931740} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-12", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931742} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-13", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931745} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-14", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931747} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-15", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931749} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-16", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931751} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-17", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931754} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-18", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931756} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-19", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931758} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-20", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931760} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-21", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931762} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-22", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931765} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-23", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931767} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-24", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931769} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-25", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931771} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-26", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931774} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-27", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931776} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-28", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931778} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-29", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931780} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-30", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931782} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-31", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931785} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-01", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931787} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-02", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931789} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-03", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931791} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-04", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931793} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-05", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931796} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-06", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931798} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-07", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931800} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-08", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931802} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-09", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931804} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-10", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931807} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-11", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931809} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-12", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931811} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-13", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931813} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-14", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931816} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-15", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931818} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-16", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931820} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-17", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931822} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-18", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931824} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-19", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931827} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-20", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931829} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-21", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931831} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-22", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931833} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-23", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931836} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-24", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931838} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-25", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931841} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-26", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931844} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-27", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931846} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-28", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931849} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-29", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931852} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-30", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931856} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-01", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931859} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-02", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931862} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-03", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931864} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-04", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931866} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-05", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931869} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-06", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931871} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-07", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931873} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-08", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100931875} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-09", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100932503} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-10", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100932506} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-11", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100932509} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-12", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100932511} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-13", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100932513} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-14", "messages": {"email": [{"variation_api_id": "3e222e3c-c792-402e-a55b-705db18b63c4", "sent": 0, "opens": 0, "machine_open": 0, "unique_opens": 0, "machine_amp_open": 0, "clicks": 0, "unique_clicks": 0, "unsubscribes": 0, "bounces": 0, "delivered": 0, "reported_spam": 0}], "sms": []}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "0c38a773-8e62-4dcb-a492-c973c8c6ab9b"}, "emitted_at": 1671100932515} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-01", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933201} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-02", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933204} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-03", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933207} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-04", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933210} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-05", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933213} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-06", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933215} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-07", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933218} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-08", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933220} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-09", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933222} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-10", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933225} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-11", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933227} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-12", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933229} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-13", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933231} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-14", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933233} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-15", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933236} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-16", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933238} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-17", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933240} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-18", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933242} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-19", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933245} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-20", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933247} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-21", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933250} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-22", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933252} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-23", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933254} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-24", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933256} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-25", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933258} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-26", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933261} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-27", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933263} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-28", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933265} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-29", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933267} +{"stream": "campaigns_analytics", "data": {"time": "2022-09-30", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933269} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-01", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933272} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-02", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933274} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-03", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933276} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-04", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933278} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-05", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933281} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-06", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933283} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-07", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933285} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-08", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933287} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-09", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933290} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-10", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933292} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-11", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933294} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-12", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933296} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-13", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933298} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-14", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933301} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-15", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933303} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-16", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933307} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-17", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933310} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-18", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933314} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-19", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933317} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-20", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933337} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-21", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933339} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-22", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933341} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-23", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933344} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-24", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933346} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-25", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933348} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-26", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933350} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-27", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933353} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-28", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933355} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-29", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933357} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-30", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933359} +{"stream": "campaigns_analytics", "data": {"time": "2022-10-31", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933361} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-01", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933364} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-02", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933366} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-03", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933368} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-04", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933370} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-05", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933373} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-06", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933375} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-07", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933377} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-08", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933379} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-09", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933382} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-10", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933384} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-11", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933386} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-12", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933388} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-13", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933391} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-14", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933393} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-15", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933395} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-16", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933397} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-17", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933400} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-18", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933402} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-19", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933404} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-20", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933406} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-21", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933409} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-22", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933411} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-23", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933413} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-24", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933415} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-25", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933417} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-26", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933420} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-27", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933422} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-28", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933424} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-29", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933426} +{"stream": "campaigns_analytics", "data": {"time": "2022-11-30", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933428} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-01", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933431} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-02", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933433} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-03", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933435} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-04", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933437} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-05", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933440} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-06", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933442} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-07", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933444} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-08", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100933446} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-09", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100934088} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-10", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100934098} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-11", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100934104} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-12", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100934109} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-13", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100934114} +{"stream": "campaigns_analytics", "data": {"time": "2022-12-14", "messages": {"ios_push": [{"variation_name": "Variant 1", "variation_api_id": "668b8529-fcbd-4a29-9722-055942db7ab5", "sent": 0, "direct_opens": 0, "total_opens": 0, "bounces": 0, "body_clicks": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}, {"variation_name": "Control Group", "variation_api_id": "ee9003b5-2dda-4aa5-869a-84906b688f0f", "enrolled": 0, "revenue": 0.0, "unique_recipients": 0, "conversions": 0, "conversions_by_send_time": 0, "conversions1": 0, "conversions1_by_send_time": 0, "conversions2": 0, "conversions2_by_send_time": 0, "conversions3": 0, "conversions3_by_send_time": 0}]}, "conversions_by_send_time": 0, "conversions1_by_send_time": 0, "conversions2_by_send_time": 0, "conversions3_by_send_time": 0, "conversions": 0, "conversions1": 0, "conversions2": 0, "conversions3": 0, "unique_recipients": 0, "revenue": 0.0, "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a"}, "emitted_at": 1671100934117} +{"stream": "canvases", "data": {"id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2", "name": "Test Canvas", "tags": ["airbyte", "canvas"], "last_edited": "2022-11-29T15:07:49+00:00"}, "emitted_at": 1671100934567} +{"stream": "canvases_analytics", "data": {"time": "2022-09-01", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936195} +{"stream": "canvases_analytics", "data": {"time": "2022-09-02", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936204} +{"stream": "canvases_analytics", "data": {"time": "2022-09-03", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936211} +{"stream": "canvases_analytics", "data": {"time": "2022-09-04", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936216} +{"stream": "canvases_analytics", "data": {"time": "2022-09-05", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936220} +{"stream": "canvases_analytics", "data": {"time": "2022-09-06", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936224} +{"stream": "canvases_analytics", "data": {"time": "2022-09-07", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936227} +{"stream": "canvases_analytics", "data": {"time": "2022-09-08", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936230} +{"stream": "canvases_analytics", "data": {"time": "2022-09-09", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936232} +{"stream": "canvases_analytics", "data": {"time": "2022-09-10", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936235} +{"stream": "canvases_analytics", "data": {"time": "2022-09-11", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936237} +{"stream": "canvases_analytics", "data": {"time": "2022-09-12", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936240} +{"stream": "canvases_analytics", "data": {"time": "2022-09-13", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936242} +{"stream": "canvases_analytics", "data": {"time": "2022-09-14", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936856} +{"stream": "canvases_analytics", "data": {"time": "2022-09-15", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936866} +{"stream": "canvases_analytics", "data": {"time": "2022-09-16", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936873} +{"stream": "canvases_analytics", "data": {"time": "2022-09-17", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936878} +{"stream": "canvases_analytics", "data": {"time": "2022-09-18", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936882} +{"stream": "canvases_analytics", "data": {"time": "2022-09-19", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936886} +{"stream": "canvases_analytics", "data": {"time": "2022-09-20", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936889} +{"stream": "canvases_analytics", "data": {"time": "2022-09-21", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936892} +{"stream": "canvases_analytics", "data": {"time": "2022-09-22", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936895} +{"stream": "canvases_analytics", "data": {"time": "2022-09-23", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936897} +{"stream": "canvases_analytics", "data": {"time": "2022-09-24", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936900} +{"stream": "canvases_analytics", "data": {"time": "2022-09-25", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936902} +{"stream": "canvases_analytics", "data": {"time": "2022-09-26", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936904} +{"stream": "canvases_analytics", "data": {"time": "2022-09-27", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100936907} +{"stream": "canvases_analytics", "data": {"time": "2022-09-28", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937165} +{"stream": "canvases_analytics", "data": {"time": "2022-09-29", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937175} +{"stream": "canvases_analytics", "data": {"time": "2022-09-30", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937181} +{"stream": "canvases_analytics", "data": {"time": "2022-10-01", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937185} +{"stream": "canvases_analytics", "data": {"time": "2022-10-02", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937189} +{"stream": "canvases_analytics", "data": {"time": "2022-10-03", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937193} +{"stream": "canvases_analytics", "data": {"time": "2022-10-04", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937196} +{"stream": "canvases_analytics", "data": {"time": "2022-10-05", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937199} +{"stream": "canvases_analytics", "data": {"time": "2022-10-06", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937202} +{"stream": "canvases_analytics", "data": {"time": "2022-10-07", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937204} +{"stream": "canvases_analytics", "data": {"time": "2022-10-08", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937206} +{"stream": "canvases_analytics", "data": {"time": "2022-10-09", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937209} +{"stream": "canvases_analytics", "data": {"time": "2022-10-10", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937211} +{"stream": "canvases_analytics", "data": {"time": "2022-10-11", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937213} +{"stream": "canvases_analytics", "data": {"time": "2022-10-12", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937809} +{"stream": "canvases_analytics", "data": {"time": "2022-10-13", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937811} +{"stream": "canvases_analytics", "data": {"time": "2022-10-14", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937814} +{"stream": "canvases_analytics", "data": {"time": "2022-10-15", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937817} +{"stream": "canvases_analytics", "data": {"time": "2022-10-16", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937820} +{"stream": "canvases_analytics", "data": {"time": "2022-10-17", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937822} +{"stream": "canvases_analytics", "data": {"time": "2022-10-18", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937825} +{"stream": "canvases_analytics", "data": {"time": "2022-10-19", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937827} +{"stream": "canvases_analytics", "data": {"time": "2022-10-20", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937829} +{"stream": "canvases_analytics", "data": {"time": "2022-10-21", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937831} +{"stream": "canvases_analytics", "data": {"time": "2022-10-22", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937833} +{"stream": "canvases_analytics", "data": {"time": "2022-10-23", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937835} +{"stream": "canvases_analytics", "data": {"time": "2022-10-24", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937838} +{"stream": "canvases_analytics", "data": {"time": "2022-10-25", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100937840} +{"stream": "canvases_analytics", "data": {"time": "2022-10-26", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938433} +{"stream": "canvases_analytics", "data": {"time": "2022-10-27", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938437} +{"stream": "canvases_analytics", "data": {"time": "2022-10-28", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938441} +{"stream": "canvases_analytics", "data": {"time": "2022-10-29", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938444} +{"stream": "canvases_analytics", "data": {"time": "2022-10-30", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938448} +{"stream": "canvases_analytics", "data": {"time": "2022-10-31", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938452} +{"stream": "canvases_analytics", "data": {"time": "2022-11-01", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938456} +{"stream": "canvases_analytics", "data": {"time": "2022-11-02", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938460} +{"stream": "canvases_analytics", "data": {"time": "2022-11-03", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938464} +{"stream": "canvases_analytics", "data": {"time": "2022-11-04", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938468} +{"stream": "canvases_analytics", "data": {"time": "2022-11-05", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938472} +{"stream": "canvases_analytics", "data": {"time": "2022-11-06", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938476} +{"stream": "canvases_analytics", "data": {"time": "2022-11-07", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938480} +{"stream": "canvases_analytics", "data": {"time": "2022-11-08", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938484} +{"stream": "canvases_analytics", "data": {"time": "2022-11-09", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938797} +{"stream": "canvases_analytics", "data": {"time": "2022-11-10", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938799} +{"stream": "canvases_analytics", "data": {"time": "2022-11-11", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938802} +{"stream": "canvases_analytics", "data": {"time": "2022-11-12", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938804} +{"stream": "canvases_analytics", "data": {"time": "2022-11-13", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938806} +{"stream": "canvases_analytics", "data": {"time": "2022-11-14", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938808} +{"stream": "canvases_analytics", "data": {"time": "2022-11-15", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938811} +{"stream": "canvases_analytics", "data": {"time": "2022-11-16", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938813} +{"stream": "canvases_analytics", "data": {"time": "2022-11-17", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938815} +{"stream": "canvases_analytics", "data": {"time": "2022-11-18", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938817} +{"stream": "canvases_analytics", "data": {"time": "2022-11-19", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938820} +{"stream": "canvases_analytics", "data": {"time": "2022-11-20", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938822} +{"stream": "canvases_analytics", "data": {"time": "2022-11-21", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938824} +{"stream": "canvases_analytics", "data": {"time": "2022-11-22", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100938827} +{"stream": "canvases_analytics", "data": {"time": "2022-11-23", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939069} +{"stream": "canvases_analytics", "data": {"time": "2022-11-24", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939072} +{"stream": "canvases_analytics", "data": {"time": "2022-11-25", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939077} +{"stream": "canvases_analytics", "data": {"time": "2022-11-26", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939082} +{"stream": "canvases_analytics", "data": {"time": "2022-11-27", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939086} +{"stream": "canvases_analytics", "data": {"time": "2022-11-28", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939089} +{"stream": "canvases_analytics", "data": {"time": "2022-11-29", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939092} +{"stream": "canvases_analytics", "data": {"time": "2022-11-30", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939094} +{"stream": "canvases_analytics", "data": {"time": "2022-12-01", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939096} +{"stream": "canvases_analytics", "data": {"time": "2022-12-02", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939098} +{"stream": "canvases_analytics", "data": {"time": "2022-12-03", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939101} +{"stream": "canvases_analytics", "data": {"time": "2022-12-04", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939103} +{"stream": "canvases_analytics", "data": {"time": "2022-12-05", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939105} +{"stream": "canvases_analytics", "data": {"time": "2022-12-06", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939107} +{"stream": "canvases_analytics", "data": {"time": "2022-12-07", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939689} +{"stream": "canvases_analytics", "data": {"time": "2022-12-08", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939691} +{"stream": "canvases_analytics", "data": {"time": "2022-12-09", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939693} +{"stream": "canvases_analytics", "data": {"time": "2022-12-10", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939695} +{"stream": "canvases_analytics", "data": {"time": "2022-12-11", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939698} +{"stream": "canvases_analytics", "data": {"time": "2022-12-12", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939700} +{"stream": "canvases_analytics", "data": {"time": "2022-12-13", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939702} +{"stream": "canvases_analytics", "data": {"time": "2022-12-14", "total_stats": {"revenue": 0.0, "entries": 0, "conversions": 0, "conversions_by_entry_time": 0}, "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2"}, "emitted_at": 1671100939704} +{"stream": "events", "data": {"event_name": "AirbyteInitialEvent"}, "emitted_at": 1671100940536} +{"stream": "events", "data": {"event_name": "Test Event"}, "emitted_at": 1671100940537} +{"stream": "events", "data": {"event_name": "Test Event 1"}, "emitted_at": 1671100940538} +{"stream": "cards", "data": {"id": "609e4d4c-367b-4c87-a8ad-b1f903d058fd", "type": "NewsItem", "title": "Test", "tags": ["News feed"]}, "emitted_at": 1671100949719} +{"stream": "segments", "data": {"id": "cd7a9141-3457-4c37-9336-52845dd5fe87", "name": "Lapsed Users - 7 days", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952425} +{"stream": "segments", "data": {"id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a", "name": "Lapsed Users - 30 days", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952428} +{"stream": "segments", "data": {"id": "ce4e667c-3180-45dd-a200-7f3a9489f306", "name": "User Onboarding - First Week", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952431} +{"stream": "segments", "data": {"id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4", "name": "User Onboarding - Second Week", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952433} +{"stream": "segments", "data": {"id": "bf9673e5-41ee-4df4-b528-e46829efd646", "name": "Engaged Recent Users", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952436} +{"stream": "segments", "data": {"id": "6a51c1cf-8997-4919-a973-38557dde18de", "name": "Lapsed Users - 7 days 1", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952438} +{"stream": "segments", "data": {"id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac", "name": "Lapsed Users - 30 days 1", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952440} +{"stream": "segments", "data": {"id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2", "name": "User Onboarding - First Week 1", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952442} +{"stream": "segments", "data": {"id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac", "name": "User Onboarding - Second Week 1", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952444} +{"stream": "segments", "data": {"id": "fb7e1079-f353-4887-a183-f197b30cf27e", "name": "Engaged Recent Users 1", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952446} +{"stream": "segments", "data": {"id": "7edf3784-c465-4ca8-89be-8a07c154fbf9", "name": "Lapsed Users - 7 days 2", "analytics_tracking_enabled": false, "tags": ["test"]}, "emitted_at": 1671100952447} +{"stream": "segments", "data": {"id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71", "name": "Lapsed Users - 30 days 2", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952449} +{"stream": "segments", "data": {"id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493", "name": "User Onboarding - First Week 2", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952450} +{"stream": "segments", "data": {"id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4", "name": "User Onboarding - Second Week 2", "analytics_tracking_enabled": false, "tags": ["card"]}, "emitted_at": 1671100952451} +{"stream": "segments", "data": {"id": "a94939de-135b-4e1a-9cdf-a5940747415e", "name": "Engaged Recent Users 2", "analytics_tracking_enabled": false, "tags": ["card"]}, "emitted_at": 1671100952453} +{"stream": "segments", "data": {"id": "8043672e-73fb-4731-854b-f9d315aa2b6e", "name": "All Users (test - Android)", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952454} +{"stream": "segments", "data": {"id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10", "name": "All Users (test - iOS)", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952455} +{"stream": "segments", "data": {"id": "4926071e-2f5a-44f8-98b8-0d9db823283e", "name": "All Users (Airbyte - Web)", "analytics_tracking_enabled": false, "tags": ["airbyte"]}, "emitted_at": 1671100952456} +{"stream": "segments", "data": {"id": "8b922b25-dcc6-4e4d-b345-f7b06106046c", "name": "All Users (iOS Test - iOS)", "analytics_tracking_enabled": false, "tags": []}, "emitted_at": 1671100952457} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955312} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955314} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955316} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955318} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955321} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955323} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955325} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955327} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955329} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955332} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955334} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955336} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955338} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955340} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955342} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955344} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955347} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955349} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955351} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955353} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955355} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955357} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955359} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955362} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955364} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955366} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955368} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955370} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955372} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955374} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955376} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955379} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955381} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955383} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955385} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955387} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955389} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955391} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955393} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955396} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955398} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955400} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955402} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955404} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955406} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955409} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955411} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955413} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955415} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955417} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955420} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955422} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955424} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955426} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955428} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955430} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955432} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955435} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955437} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955439} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955441} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955443} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955445} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955447} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955450} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955452} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955454} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955456} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955458} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955460} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955462} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955464} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955467} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955469} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955471} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955473} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955476} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955478} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955480} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955482} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955484} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955486} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955489} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955491} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955493} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955495} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955497} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955499} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955501} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955503} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955506} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955508} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955510} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955512} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955514} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955516} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955518} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955520} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955523} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955762} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955771} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955780} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955783} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955786} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "cd7a9141-3457-4c37-9336-52845dd5fe87"}, "emitted_at": 1671100955788} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956383} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956385} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956387} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956389} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956391} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956393} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956395} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956397} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956400} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956402} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956404} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956406} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956408} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956410} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956412} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956414} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956416} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956419} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956421} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956423} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956425} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956427} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956429} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956431} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956433} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956435} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956438} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956440} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956442} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956444} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956446} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956448} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956450} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956452} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956454} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956456} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956459} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956461} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956463} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956465} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956467} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956469} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956471} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956473} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956475} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956478} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956480} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956482} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956484} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956486} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956488} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956490} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956492} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956494} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956497} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956499} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956501} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956503} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956505} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956507} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956509} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956511} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956514} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956516} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956518} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956520} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956522} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956524} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956526} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956528} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956530} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956533} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956535} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956537} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956539} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956541} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956543} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956545} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956547} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956549} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956552} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956554} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956556} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956558} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956560} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956562} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956564} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956566} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956568} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956570} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956573} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956575} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956577} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956579} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956581} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956583} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956585} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956587} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100956589} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100957063} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100957072} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100957080} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100957085} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100957090} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "2eaf781b-c4fb-4739-8ff1-080144e1aa1a"}, "emitted_at": 1671100957093} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957744} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957746} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957748} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957750} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957753} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957755} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957757} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957759} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957761} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957763} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957765} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957767} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957769} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957772} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957774} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957776} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957778} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957780} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957782} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957784} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957786} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957788} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957791} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957793} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957795} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957797} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957799} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957801} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957803} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957805} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957808} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957810} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957812} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957814} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957817} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957819} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957821} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957823} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957825} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957828} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957830} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957832} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957834} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957836} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957838} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957840} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957842} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957844} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957847} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957849} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957851} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957853} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957855} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957857} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957859} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957862} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957864} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957866} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957868} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957870} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957872} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957874} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957876} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957878} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957881} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957883} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957885} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957887} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957889} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957891} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957894} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957896} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957898} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957900} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957902} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957904} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957906} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957908} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957911} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957913} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957915} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957917} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957919} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957921} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957923} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957925} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957928} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957930} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957932} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957934} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957936} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957938} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957940} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957943} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957945} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957947} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957950} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957952} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100957954} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100958564} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100958566} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100958568} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100958570} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100958572} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "ce4e667c-3180-45dd-a200-7f3a9489f306"}, "emitted_at": 1671100958574} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959178} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959180} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959182} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959184} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959187} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959189} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959191} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959193} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959195} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959197} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959199} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959202} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959204} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959206} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959208} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959210} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959212} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959214} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959216} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959219} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959221} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959223} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959225} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959227} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959229} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959231} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959234} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959236} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959238} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959240} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959242} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959245} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959247} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959249} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959251} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959253} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959255} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959257} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959259} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959262} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959264} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959266} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959268} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959270} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959272} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959274} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959277} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959279} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959281} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959283} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959285} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959287} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959290} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959292} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959294} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959296} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959298} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959301} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959304} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959307} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959310} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959313} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959315} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959317} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959319} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959321} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959323} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959326} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959328} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959330} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959332} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959334} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959336} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959338} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959340} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959343} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959345} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959347} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959349} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959351} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959353} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959356} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959358} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959360} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959362} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959364} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959366} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959368} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959370} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959373} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959375} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959377} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959379} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959381} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959383} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959385} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959387} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959389} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959392} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959892} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959894} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959896} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959898} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959900} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "9d877c05-a4f6-4409-ae5a-eb7676d1e0b4"}, "emitted_at": 1671100959902} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960509} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960512} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960514} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960516} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960518} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960520} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960522} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960524} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960526} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960529} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960531} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960533} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960535} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960537} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960539} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960541} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960543} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960546} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960548} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960550} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960552} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960554} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960556} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960558} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960560} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960562} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960565} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960567} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960569} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960571} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960573} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960575} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960577} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960579} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960582} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960584} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960586} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960588} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960590} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960592} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960594} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960596} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960598} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960600} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960603} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960605} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960607} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960609} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960611} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960613} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960615} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960617} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960619} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960622} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960624} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960626} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960628} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960630} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960632} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960634} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960637} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960639} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960641} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960643} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960645} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960647} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960649} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960651} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960653} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960655} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960658} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960660} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960662} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960664} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960666} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960668} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960670} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960672} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960674} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960677} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960679} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960681} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960683} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960685} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960687} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960689} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960691} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960694} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960696} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960698} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960700} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960702} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960704} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960706} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960709} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960711} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960713} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960715} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100960717} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100961329} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100961331} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100961333} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100961335} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100961337} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "bf9673e5-41ee-4df4-b528-e46829efd646"}, "emitted_at": 1671100961339} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961943} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961945} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961947} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961949} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961951} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961953} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961955} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961958} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961960} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961962} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961964} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961966} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961968} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961970} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961972} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961974} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961977} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961979} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961981} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961983} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961985} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961987} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961989} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961991} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961994} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961996} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100961998} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962000} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962002} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962004} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962006} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962008} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962011} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962013} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962015} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962017} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962019} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962021} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962023} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962025} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962027} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962030} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962032} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962034} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962036} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962038} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962040} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962042} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962044} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962047} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962049} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962051} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962053} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962055} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962057} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962059} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962061} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962063} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962066} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962068} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962070} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962072} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962074} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962076} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962078} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962080} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962083} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962085} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962087} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962089} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962091} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962093} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962095} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962097} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962099} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962101} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962104} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962106} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962108} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962110} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962112} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962114} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962116} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962118} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962121} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962123} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962125} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962127} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962129} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962131} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962133} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962136} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962138} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962140} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962142} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962144} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962146} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962148} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962150} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962763} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962765} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962767} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962769} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962771} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "6a51c1cf-8997-4919-a973-38557dde18de"}, "emitted_at": 1671100962773} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963025} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963033} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963041} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963046} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963050} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963054} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963057} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963060} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963063} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963065} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963068} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963070} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963072} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963074} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963076} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963079} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963081} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963083} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963085} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963087} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963089} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963091} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963093} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963095} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963097} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963100} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963102} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963104} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963106} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963108} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963110} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963113} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963115} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963117} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963119} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963121} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963123} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963125} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963127} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963130} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963132} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963134} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963136} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963138} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963140} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963143} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963145} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963147} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963149} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963151} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963153} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963155} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963157} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963160} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963162} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963164} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963166} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963168} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963170} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963172} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963174} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963176} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963179} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963181} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963183} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963185} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963187} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963189} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963191} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963193} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963196} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963198} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963200} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963202} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963204} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963206} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963208} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963210} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963212} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963214} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963217} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963219} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963221} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963223} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963225} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963227} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963229} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963231} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963234} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963236} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963238} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963240} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963242} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963244} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963246} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963248} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963250} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963253} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963255} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963592} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963600} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963608} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963614} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963619} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "18ae06cf-9f79-4b47-ab41-872caa0a2aac"}, "emitted_at": 1671100963622} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964299} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964301} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964303} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964305} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964307} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964310} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964312} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964314} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964316} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964318} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964320} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964322} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964324} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964326} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964329} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964331} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964333} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964335} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964338} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964340} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964342} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964344} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964346} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964348} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964350} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964353} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964355} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964357} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964359} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964361} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964363} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964365} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964367} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964369} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964372} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964374} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964376} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964378} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964380} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964382} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964384} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964386} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964389} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964391} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964393} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964395} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964397} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964399} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964401} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964403} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964405} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964408} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964410} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964412} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964414} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964416} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964418} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964420} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964422} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964425} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964427} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964429} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964431} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964433} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964435} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964437} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964439} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964442} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964444} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964446} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964448} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964450} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964452} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964455} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964457} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964459} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964461} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964463} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964465} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964467} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964469} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964471} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964474} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964476} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964478} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964480} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964482} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964484} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964486} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964488} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964490} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964493} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964495} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964497} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964499} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964501} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964503} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964505} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100964507} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100965063} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100965066} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100965070} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100965074} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100965078} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "d75a8f86-dd0d-4c60-b97e-855ca9f468e2"}, "emitted_at": 1671100965082} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965730} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965733} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965735} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965737} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965739} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965741} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965743} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965746} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965748} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965750} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965752} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965754} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965756} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965758} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965760} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965762} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965765} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965767} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965769} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965771} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965773} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965775} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965777} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965779} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965782} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965784} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965786} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965788} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965790} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965792} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965794} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965796} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965799} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965801} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965803} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965805} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965807} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965809} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965811} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965813} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965816} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965818} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965820} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965822} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965824} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965826} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965829} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965831} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965833} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965835} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965837} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965839} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965842} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965844} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965846} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965848} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965850} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965852} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965854} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965856} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965858} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965861} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965863} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965865} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965867} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965869} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965871} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965873} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965875} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965878} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965880} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965882} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965884} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965886} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965888} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965890} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965892} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965894} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965897} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965899} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965901} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965903} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965905} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965907} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965909} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965911} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965914} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965916} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965918} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965920} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965922} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965924} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965926} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965929} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965931} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965933} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965935} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965937} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100965939} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100966449} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100966451} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100966453} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100966456} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100966458} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "c693d38e-2fb6-4ef6-8e24-67b0977655ac"}, "emitted_at": 1671100966460} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967178} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967186} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967192} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967197} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967201} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967205} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967208} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967210} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967213} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967216} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967218} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967220} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967222} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967225} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967227} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967229} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967231} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967234} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967236} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967238} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967240} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967242} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967244} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967246} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967249} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967251} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967253} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967255} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967257} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967259} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967261} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967263} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967266} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967268} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967270} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967272} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967274} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967276} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967279} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967281} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967283} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967285} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967287} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967289} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967291} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967294} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967296} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967298} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967300} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967302} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967304} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967306} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967309} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967311} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967313} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967315} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967317} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967319} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967321} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967324} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967326} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967328} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967330} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967332} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967334} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967336} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967339} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967341} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967343} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967345} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967347} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967349} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967351} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967354} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967356} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967358} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967360} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967362} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967364} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967367} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967369} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967371} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967373} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967375} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967377} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967379} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967382} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967384} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967386} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967388} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967390} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967392} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967394} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967397} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967399} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967401} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967403} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967405} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967407} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967687} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967695} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967702} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967707} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967712} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "fb7e1079-f353-4887-a183-f197b30cf27e"}, "emitted_at": 1671100967715} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100967996} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968005} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968012} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968016} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968020} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968024} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968027} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968030} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968032} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968035} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968037} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968040} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968042} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968044} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968046} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968048} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968050} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968052} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968055} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968057} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968059} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968061} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968063} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968065} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968067} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968070} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968072} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968074} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968076} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968078} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968080} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968082} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968085} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968087} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968089} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968091} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968093} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968095} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968097} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968099} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968101} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968104} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968106} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968108} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968110} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968112} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968114} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968116} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968118} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968120} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968123} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968125} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968127} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968129} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968131} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968133} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968136} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968138} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968140} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968142} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968144} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968146} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968149} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968151} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968153} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968155} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968157} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968159} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968161} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968164} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968166} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968168} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968170} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968172} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968174} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968177} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968179} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968181} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968183} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968185} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968187} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968189} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968192} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968194} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968196} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968198} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968200} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968202} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968204} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968206} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968209} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968211} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968213} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968215} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968217} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968219} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968221} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968224} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968226} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968609} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968618} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968624} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968630} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968634} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "7edf3784-c465-4ca8-89be-8a07c154fbf9"}, "emitted_at": 1671100968638} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969004} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969006} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969008} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969011} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969013} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969015} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969017} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969019} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969021} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969023} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969025} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969027} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969030} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969032} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969034} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969036} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969038} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969040} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969042} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969045} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969047} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969049} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969051} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969053} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969055} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969057} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969059} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969061} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969064} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969066} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969068} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969070} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969072} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969075} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969077} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969079} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969082} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969085} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969088} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969090} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969092} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969095} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969097} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969099} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969101} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969103} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969105} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969107} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969109} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969112} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969114} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969116} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969118} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969120} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969122} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969125} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969127} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969129} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969131} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969133} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969135} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969138} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969140} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969142} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969144} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969146} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969148} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969151} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969153} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969155} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969157} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969159} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969161} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969163} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969166} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969168} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969170} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969172} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969174} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969177} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969179} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969181} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969183} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969185} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969187} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969189} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969192} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969194} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969196} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969198} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969200} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969202} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969204} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969207} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969209} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969211} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969213} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969215} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969217} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969782} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969790} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969797} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969802} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969806} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "2ea0eeb1-26cf-4e63-a5ac-bec5622cdf71"}, "emitted_at": 1671100969809} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970134} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970136} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970138} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970140} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970142} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970145} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970147} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970149} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970151} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970153} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970156} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970158} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970160} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970162} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970164} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970166} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970168} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970170} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970173} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970175} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970177} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970179} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970181} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970183} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970186} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970188} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970190} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970192} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970194} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970196} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970198} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970201} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970203} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970205} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970207} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970209} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970211} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970213} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970216} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970218} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970220} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970222} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970224} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970226} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970228} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970230} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970233} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970235} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970237} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970239} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970241} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970243} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970245} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970247} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970249} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970252} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970255} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970257} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970259} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970262} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970264} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970266} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970268} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970270} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970272} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970274} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970276} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970279} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970281} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970283} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970285} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970287} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970289} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970291} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970293} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970296} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970298} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970300} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970302} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970304} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970306} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970308} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970310} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970312} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970315} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970317} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970319} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970321} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970323} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970325} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970327} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970329} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970331} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970334} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970336} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970338} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970340} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970342} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970344} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970922} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970925} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970927} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970929} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970931} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "5646a5f6-fc59-4e70-83e1-3e89a1c79493"}, "emitted_at": 1671100970933} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971532} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971534} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971536} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971538} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971540} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971543} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971545} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971547} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971549} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971551} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971553} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971555} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971557} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971559} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971562} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971564} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971566} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971568} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971570} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971572} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971574} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971577} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971579} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971581} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971583} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971585} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971587} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971589} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971592} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971594} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971596} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971598} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971600} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971602} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971604} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971607} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971609} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971611} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971613} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971615} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971617} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971619} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971622} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971624} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971626} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971628} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971630} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971632} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971635} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971637} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971639} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971641} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971643} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971645} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971647} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971650} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971652} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971654} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971656} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971658} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971660} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971663} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971665} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971667} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971669} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971671} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971673} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971675} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971677} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971679} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971682} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971684} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971686} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971688} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971690} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971692} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971694} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971697} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971699} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971701} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971703} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971705} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971707} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971709} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971711} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971714} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971716} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971718} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971720} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971722} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971724} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971726} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971728} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971730} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971733} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971735} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971737} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971739} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971741} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971962} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971964} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971966} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971968} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971970} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "b508cdb9-75cb-4122-8c6d-a7a6bfd24bf4"}, "emitted_at": 1671100971972} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972591} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972594} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972596} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972598} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972600} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972603} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972607} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972609} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972611} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972613} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972615} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972618} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972620} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972622} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972624} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972626} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972628} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972630} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972632} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972635} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972637} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972640} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972643} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972645} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972647} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972650} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972652} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972654} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972656} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972658} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972660} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972662} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972665} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972667} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972669} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972671} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972673} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972675} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972677} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972680} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972682} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972684} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972686} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972688} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972690} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972692} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972694} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972697} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972699} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972701} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972703} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972705} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972707} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972709} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972712} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972714} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972716} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972718} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972720} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972722} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972724} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972727} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972729} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972731} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972733} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972735} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972737} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972739} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972742} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972744} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972746} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972748} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972750} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972752} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972754} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972757} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972759} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972761} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972763} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972765} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972767} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972769} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972772} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972774} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972776} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972778} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972780} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972782} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972784} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972786} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972789} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972791} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972793} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972795} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972797} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972799} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972802} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972804} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100972806} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100973412} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100973414} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100973416} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100973418} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100973420} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "a94939de-135b-4e1a-9cdf-a5940747415e"}, "emitted_at": 1671100973423} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974026} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974028} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974030} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974032} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974034} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974036} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974038} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974041} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974043} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974045} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974047} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974049} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974051} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974054} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974056} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974058} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974060} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974062} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974064} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974066} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974069} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974071} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974073} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974076} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974078} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974080} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974082} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974084} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974087} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974089} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974091} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974093} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974095} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974097} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974099} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974102} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974104} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974106} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974108} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974110} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974112} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974114} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974116} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974119} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974121} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974123} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974125} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974127} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974129} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974131} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974134} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974136} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974138} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974140} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974142} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974144} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974146} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974149} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974151} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974153} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974155} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974157} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974159} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974162} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974164} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974166} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974168} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974170} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974173} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974175} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974177} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974179} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974181} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974183} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974185} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974188} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974190} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974192} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974194} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974196} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974198} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974200} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974203} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974205} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974207} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974209} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974211} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974214} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974216} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974218} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974220} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974222} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974224} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974226} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974229} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974231} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974233} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974235} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974237} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974550} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974558} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974565} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974570} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974575} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "8043672e-73fb-4731-854b-f9d315aa2b6e"}, "emitted_at": 1671100974579} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975153} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975155} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975157} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975159} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975161} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975163} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975165} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975168} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975170} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975172} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975174} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975176} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975178} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975181} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975183} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975185} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975187} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975189} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975191} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975193} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975196} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975198} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975200} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975202} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975204} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975206} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975209} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975211} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975213} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975215} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975217} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975219} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975222} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975224} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975226} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975228} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975230} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975232} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975234} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975237} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975239} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975241} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975243} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975245} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975247} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975249} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975252} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975254} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975256} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975258} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975260} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975262} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975264} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975267} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975269} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975271} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975273} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975275} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975277} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975279} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975282} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975284} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975286} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975288} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975290} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975292} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975294} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975297} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975299} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975301} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975303} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975305} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975307} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975309} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975312} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975314} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975316} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975318} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975320} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975322} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975324} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975327} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975329} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975331} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975333} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975335} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975337} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975340} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975342} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975344} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975346} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975348} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975350} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975352} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975355} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975357} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975359} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975361} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975363} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975974} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975976} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975978} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975980} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975982} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "a7a3a752-046e-4df4-bf3b-4e50d88d9a10"}, "emitted_at": 1671100975985} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976558} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976561} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976563} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976565} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976567} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976570} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976572} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976574} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976576} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976578} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976581} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976583} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976585} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976587} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976589} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976591} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976594} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976596} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976598} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976600} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976602} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976605} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976607} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976609} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976611} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976613} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976615} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976617} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976620} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976622} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976624} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976626} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976628} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976630} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976633} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976635} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976637} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976639} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976642} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976644} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976646} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976648} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976651} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976653} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976655} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976657} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976659} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976662} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976664} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976666} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976668} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976670} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976672} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976675} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976677} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976679} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976681} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976683} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976685} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976687} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976690} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976692} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976694} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976696} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976698} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976700} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976702} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976705} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976707} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976709} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976711} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976713} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976715} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976717} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976720} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976722} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976724} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976726} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976728} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976730} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976732} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976734} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976737} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976739} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976741} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976743} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976745} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976747} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976750} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976752} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976754} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976756} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976758} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976761} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976763} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976765} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976767} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976769} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100976771} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100977053} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100977062} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100977069} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100977073} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100977077} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "4926071e-2f5a-44f8-98b8-0d9db823283e"}, "emitted_at": 1671100977081} +{"stream": "segments_analytics", "data": {"time": "2022-09-01", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977675} +{"stream": "segments_analytics", "data": {"time": "2022-09-02", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977684} +{"stream": "segments_analytics", "data": {"time": "2022-09-03", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977690} +{"stream": "segments_analytics", "data": {"time": "2022-09-04", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977695} +{"stream": "segments_analytics", "data": {"time": "2022-09-05", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977699} +{"stream": "segments_analytics", "data": {"time": "2022-09-06", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977702} +{"stream": "segments_analytics", "data": {"time": "2022-09-07", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977705} +{"stream": "segments_analytics", "data": {"time": "2022-09-08", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977708} +{"stream": "segments_analytics", "data": {"time": "2022-09-09", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977711} +{"stream": "segments_analytics", "data": {"time": "2022-09-10", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977713} +{"stream": "segments_analytics", "data": {"time": "2022-09-11", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977715} +{"stream": "segments_analytics", "data": {"time": "2022-09-12", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977718} +{"stream": "segments_analytics", "data": {"time": "2022-09-13", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977720} +{"stream": "segments_analytics", "data": {"time": "2022-09-14", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977722} +{"stream": "segments_analytics", "data": {"time": "2022-09-15", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977724} +{"stream": "segments_analytics", "data": {"time": "2022-09-16", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977726} +{"stream": "segments_analytics", "data": {"time": "2022-09-17", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977728} +{"stream": "segments_analytics", "data": {"time": "2022-09-18", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977731} +{"stream": "segments_analytics", "data": {"time": "2022-09-19", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977733} +{"stream": "segments_analytics", "data": {"time": "2022-09-20", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977735} +{"stream": "segments_analytics", "data": {"time": "2022-09-21", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977737} +{"stream": "segments_analytics", "data": {"time": "2022-09-22", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977739} +{"stream": "segments_analytics", "data": {"time": "2022-09-23", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977741} +{"stream": "segments_analytics", "data": {"time": "2022-09-24", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977743} +{"stream": "segments_analytics", "data": {"time": "2022-09-25", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977746} +{"stream": "segments_analytics", "data": {"time": "2022-09-26", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977748} +{"stream": "segments_analytics", "data": {"time": "2022-09-27", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977750} +{"stream": "segments_analytics", "data": {"time": "2022-09-28", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977752} +{"stream": "segments_analytics", "data": {"time": "2022-09-29", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977754} +{"stream": "segments_analytics", "data": {"time": "2022-09-30", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977756} +{"stream": "segments_analytics", "data": {"time": "2022-10-01", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977758} +{"stream": "segments_analytics", "data": {"time": "2022-10-02", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977761} +{"stream": "segments_analytics", "data": {"time": "2022-10-03", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977763} +{"stream": "segments_analytics", "data": {"time": "2022-10-04", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977765} +{"stream": "segments_analytics", "data": {"time": "2022-10-05", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977767} +{"stream": "segments_analytics", "data": {"time": "2022-10-06", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977769} +{"stream": "segments_analytics", "data": {"time": "2022-10-07", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977771} +{"stream": "segments_analytics", "data": {"time": "2022-10-08", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977773} +{"stream": "segments_analytics", "data": {"time": "2022-10-09", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977776} +{"stream": "segments_analytics", "data": {"time": "2022-10-10", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977778} +{"stream": "segments_analytics", "data": {"time": "2022-10-11", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977780} +{"stream": "segments_analytics", "data": {"time": "2022-10-12", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977782} +{"stream": "segments_analytics", "data": {"time": "2022-10-13", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977784} +{"stream": "segments_analytics", "data": {"time": "2022-10-14", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977786} +{"stream": "segments_analytics", "data": {"time": "2022-10-15", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977788} +{"stream": "segments_analytics", "data": {"time": "2022-10-16", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977791} +{"stream": "segments_analytics", "data": {"time": "2022-10-17", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977793} +{"stream": "segments_analytics", "data": {"time": "2022-10-18", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977795} +{"stream": "segments_analytics", "data": {"time": "2022-10-19", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977797} +{"stream": "segments_analytics", "data": {"time": "2022-10-20", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977799} +{"stream": "segments_analytics", "data": {"time": "2022-10-21", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977801} +{"stream": "segments_analytics", "data": {"time": "2022-10-22", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977803} +{"stream": "segments_analytics", "data": {"time": "2022-10-23", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977805} +{"stream": "segments_analytics", "data": {"time": "2022-10-24", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977808} +{"stream": "segments_analytics", "data": {"time": "2022-10-25", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977810} +{"stream": "segments_analytics", "data": {"time": "2022-10-26", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977812} +{"stream": "segments_analytics", "data": {"time": "2022-10-27", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977814} +{"stream": "segments_analytics", "data": {"time": "2022-10-28", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977816} +{"stream": "segments_analytics", "data": {"time": "2022-10-29", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977818} +{"stream": "segments_analytics", "data": {"time": "2022-10-30", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977820} +{"stream": "segments_analytics", "data": {"time": "2022-10-31", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977822} +{"stream": "segments_analytics", "data": {"time": "2022-11-01", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977825} +{"stream": "segments_analytics", "data": {"time": "2022-11-02", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977827} +{"stream": "segments_analytics", "data": {"time": "2022-11-03", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977829} +{"stream": "segments_analytics", "data": {"time": "2022-11-04", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977831} +{"stream": "segments_analytics", "data": {"time": "2022-11-05", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977834} +{"stream": "segments_analytics", "data": {"time": "2022-11-06", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977836} +{"stream": "segments_analytics", "data": {"time": "2022-11-07", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977838} +{"stream": "segments_analytics", "data": {"time": "2022-11-08", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977840} +{"stream": "segments_analytics", "data": {"time": "2022-11-09", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977842} +{"stream": "segments_analytics", "data": {"time": "2022-11-10", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977844} +{"stream": "segments_analytics", "data": {"time": "2022-11-11", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977846} +{"stream": "segments_analytics", "data": {"time": "2022-11-12", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977849} +{"stream": "segments_analytics", "data": {"time": "2022-11-13", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977851} +{"stream": "segments_analytics", "data": {"time": "2022-11-14", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977853} +{"stream": "segments_analytics", "data": {"time": "2022-11-15", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977855} +{"stream": "segments_analytics", "data": {"time": "2022-11-16", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977857} +{"stream": "segments_analytics", "data": {"time": "2022-11-17", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977859} +{"stream": "segments_analytics", "data": {"time": "2022-11-18", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977861} +{"stream": "segments_analytics", "data": {"time": "2022-11-19", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977863} +{"stream": "segments_analytics", "data": {"time": "2022-11-20", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977866} +{"stream": "segments_analytics", "data": {"time": "2022-11-21", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977868} +{"stream": "segments_analytics", "data": {"time": "2022-11-22", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977870} +{"stream": "segments_analytics", "data": {"time": "2022-11-23", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977872} +{"stream": "segments_analytics", "data": {"time": "2022-11-24", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977874} +{"stream": "segments_analytics", "data": {"time": "2022-11-25", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977876} +{"stream": "segments_analytics", "data": {"time": "2022-11-26", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977878} +{"stream": "segments_analytics", "data": {"time": "2022-11-27", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977881} +{"stream": "segments_analytics", "data": {"time": "2022-11-28", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977883} +{"stream": "segments_analytics", "data": {"time": "2022-11-29", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977885} +{"stream": "segments_analytics", "data": {"time": "2022-11-30", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977887} +{"stream": "segments_analytics", "data": {"time": "2022-12-01", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977889} +{"stream": "segments_analytics", "data": {"time": "2022-12-02", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977891} +{"stream": "segments_analytics", "data": {"time": "2022-12-03", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977893} +{"stream": "segments_analytics", "data": {"time": "2022-12-04", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977896} +{"stream": "segments_analytics", "data": {"time": "2022-12-05", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977898} +{"stream": "segments_analytics", "data": {"time": "2022-12-06", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977900} +{"stream": "segments_analytics", "data": {"time": "2022-12-07", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977902} +{"stream": "segments_analytics", "data": {"time": "2022-12-08", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100977904} +{"stream": "segments_analytics", "data": {"time": "2022-12-09", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100978483} +{"stream": "segments_analytics", "data": {"time": "2022-12-10", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100978492} +{"stream": "segments_analytics", "data": {"time": "2022-12-11", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100978498} +{"stream": "segments_analytics", "data": {"time": "2022-12-12", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100978503} +{"stream": "segments_analytics", "data": {"time": "2022-12-13", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100978507} +{"stream": "segments_analytics", "data": {"time": "2022-12-14", "size": 0, "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c"}, "emitted_at": 1671100978510} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-braze/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-braze/integration_tests/invalid_config.json new file mode 100644 index 000000000000..f3732995784f --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/integration_tests/invalid_config.json @@ -0,0 +1,3 @@ +{ + "todo-wrong-field": "this should be an incomplete config file, used in standard tests" +} diff --git a/airbyte-integrations/connectors/source-braze/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-braze/integration_tests/sample_config.json new file mode 100644 index 000000000000..b427d33dbadf --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/integration_tests/sample_config.json @@ -0,0 +1,5 @@ +{ + "url": "https://sdk.iad-03.braze.com", + "api_key": "334e424b-8110-4076-b0b4-a83b2e4f6b45", + "start_date": "2022-09-01" +} diff --git a/airbyte-integrations/connectors/source-braze/integration_tests/sample_state.json b/airbyte-integrations/connectors/source-braze/integration_tests/sample_state.json new file mode 100644 index 000000000000..c0877549b4ed --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/integration_tests/sample_state.json @@ -0,0 +1,24 @@ +{ + "campaigns_analytics": { + "time": "2022-09-01", + "campaign_id": "a9b2442f-ff68-49dd-96e0-b9318957cd9a" + }, + "canvases_analytics": { + "time": "2022-09-01", + "canvas_id": "c73f8e7f-c6a5-441d-b227-46cb70f9f7d2" + }, + "events_analytics": { + }, + "kpi_daily_new_users": { + }, + "kpi_daily_active_users": { + }, + "kpi_daily_app_uninstalls": { + }, + "cards_analytics": { + }, + "segments_analytics": { + "time": "2022-09-01", + "segment_id": "8b922b25-dcc6-4e4d-b345-f7b06106046c" + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-braze/main.py b/airbyte-integrations/connectors/source-braze/main.py new file mode 100644 index 000000000000..38c77b081134 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/main.py @@ -0,0 +1,13 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +import sys + +from airbyte_cdk.entrypoint import launch +from source_braze import SourceBraze + +if __name__ == "__main__": + source = SourceBraze() + launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-braze/requirements.txt b/airbyte-integrations/connectors/source-braze/requirements.txt new file mode 100644 index 000000000000..0411042aa091 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/requirements.txt @@ -0,0 +1,2 @@ +-e ../../bases/source-acceptance-test +-e . diff --git a/airbyte-integrations/connectors/source-braze/setup.py b/airbyte-integrations/connectors/source-braze/setup.py new file mode 100644 index 000000000000..f5f4f9ae0034 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/setup.py @@ -0,0 +1,29 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from setuptools import find_packages, setup + +MAIN_REQUIREMENTS = [ + "airbyte-cdk~=0.1", +] + +TEST_REQUIREMENTS = [ + "pytest~=6.2", + "pytest-mock~=3.6.1", + "source-acceptance-test", +] + +setup( + name="source_braze", + description="Source implementation for Braze.", + author="Airbyte", + author_email="contact@airbyte.io", + packages=find_packages(), + install_requires=MAIN_REQUIREMENTS, + package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]}, + extras_require={ + "tests": TEST_REQUIREMENTS, + }, +) diff --git a/airbyte-integrations/connectors/source-braze/source_braze/__init__.py b/airbyte-integrations/connectors/source-braze/source_braze/__init__.py new file mode 100644 index 000000000000..6ac44a034b4e --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/__init__.py @@ -0,0 +1,10 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from .datetime_stream_slicer import DatetimeStreamSlicerComponent +from .source import SourceBraze +from .transformations import TransformToRecordComponent + +__all__ = ["SourceBraze", "DatetimeStreamSlicerComponent", "TransformToRecordComponent"] diff --git a/airbyte-integrations/connectors/source-braze/source_braze/braze.yaml b/airbyte-integrations/connectors/source-braze/source_braze/braze.yaml new file mode 100644 index 000000000000..85f011f4d8a4 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/braze.yaml @@ -0,0 +1,321 @@ +version: "0.1.0" + +definitions: + # ----- Selector ----- + base_selector: + extractor: + field_pointer: [ "data" ] + list_selector: + extractor: + field_pointer: ["{{ options['name'] }}"] + + # ----- Requester ----- + requester: + url_base: "{{ config['url'] }}" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + + # ----- Retriever ----- + list_retriever: + record_selector: + $ref: "*ref(definitions.list_selector)" + paginator: + type: DefaultPaginator + url_base: "{{ config['url'] }}" + pagination_strategy: + type: PageIncrement + page_size: 2 + page_token_option: + inject_into: "request_parameter" + field_name: "page" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + last_edit.time[gt]: "{{ config['start_date'] }}" + + # ----- Stream bases ----- + list_stream: + retriever: + $ref: "*ref(definitions.list_retriever)" + + # ----- Parent streams ----- + campaigns_stream: + $ref: "*ref(definitions.list_stream)" + $options: + name: "campaigns" + primary_key: "id" + path: "/campaigns/list" + canvases_stream: + $ref: "*ref(definitions.list_stream)" + $options: + name: "canvases" + primary_key: "id" + path: "/canvas/list" + cards_stream: + $ref: "*ref(definitions.list_stream)" + $options: + name: "cards" + primary_key: "id" + path: "/feed/list" + segments_stream: + $ref: "*ref(definitions.list_stream)" + $options: + name: "segments" + primary_key: "id" + path: "/segments/list" + custom_events_stream: + $ref: "*ref(definitions.list_stream)" + transformations: + - class_name: "source_braze.TransformToRecordComponent" + fields: + - path: [ "event_name" ] + value: "{{ record }}" + $options: + name: "events" + path: "/events/list" + + # ----- Slicers ----- + datetime_100d_slicer: + class_name: "source_braze.DatetimeStreamSlicerComponent" + cursor_field: "time" + start_datetime: + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%d" + end_datetime: + datetime: "{{ today_utc() }}" + datetime_format: "%Y-%m-%d" + end_time_option: + field_name: "ending_at" + inject_into: "request_parameter" + step_option: + field_name: "length" + inject_into: "request_parameter" + datetime_format: "%Y-%m-%d" + step: "100d" + + datetime_14d_slicer: + $ref: "*ref(definitions.datetime_100d_slicer)" + step: "14d" + + # ----- Sliced streams ----- + sliced_retriever: + record_selector: + $ref: "*ref(definitions.base_selector)" + paginator: + type: NoPagination + requester: + $ref: "*ref(definitions.requester)" + stream_slicer: + $ref: "*ref(definitions.datetime_100d_slicer)" + + kpi_daily_new_users_stream: + retriever: + $ref: "*ref(definitions.sliced_retriever)" + stream_cursor_field: "time" + $options: + name: "kpi_daily_new_users" + path: "/kpi/new_users/data_series" + kpi_daily_active_users_stream: + retriever: + $ref: "*ref(definitions.sliced_retriever)" + stream_cursor_field: "time" + $options: + name: "kpi_daily_active_users" + path: "/kpi/dau/data_series" + kpi_daily_app_uninstalls_stream: + retriever: + $ref: "*ref(definitions.sliced_retriever)" + stream_cursor_field: "time" + $options: + name: "kpi_daily_app_uninstalls" + path: "/kpi/uninstalls/data_series" + + # ----- Sliced sub-streams ----- + campaigns_analytics_substream_config: + retriever: + $ref: "*ref(definitions.sliced_retriever)" + stream_slicer: + type: CartesianProductStreamSlicer + stream_slicers: + - type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.campaigns_stream)" + parent_key: "id" + stream_slice_field: "campaign_id" + request_option: + field_name: "campaign_id" + inject_into: "request_parameter" + - "*ref(definitions.datetime_100d_slicer)" + transformations: + - type: AddFields + fields: + - path: [ "campaign_id" ] + value: "{{ stream_slice.campaign_id }}" + stream_cursor_field: "time" + canvases_analytics_substream_config: + retriever: + $ref: "*ref(definitions.sliced_retriever)" + record_selector: + extractor: + field_pointer: [ "data", "stats" ] + stream_slicer: + type: CartesianProductStreamSlicer + stream_slicers: + - type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.canvases_stream)" + parent_key: "id" + stream_slice_field: "canvas_id" + request_option: + field_name: "canvas_id" + inject_into: "request_parameter" + - "*ref(definitions.datetime_14d_slicer)" + transformations: + - type: AddFields + fields: + - path: [ "canvas_id" ] + value: "{{ stream_slice.canvas_id }}" + stream_cursor_field: "time" + cards_analytics_substream_config: + retriever: + $ref: "*ref(definitions.sliced_retriever)" + stream_slicer: + type: CartesianProductStreamSlicer + stream_slicers: + - type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.cards_stream)" + parent_key: "id" + stream_slice_field: "card_id" + request_option: + field_name: "card_id" + inject_into: "request_parameter" + - "*ref(definitions.datetime_100d_slicer)" + transformations: + - type: AddFields + fields: + - path: [ "card_id" ] + value: "{{ stream_slice.card_id }}" + stream_cursor_field: "time" + segments_analytics_substream_config: + retriever: + $ref: "*ref(definitions.sliced_retriever)" + stream_slicer: + type: CartesianProductStreamSlicer + stream_slicers: + - type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.segments_stream)" + parent_key: "id" + stream_slice_field: "segment_id" + request_option: + field_name: "segment_id" + inject_into: "request_parameter" + - "*ref(definitions.datetime_100d_slicer)" + transformations: + - type: AddFields + fields: + - path: [ "segment_id" ] + value: "{{ stream_slice.segment_id }}" + stream_cursor_field: "time" + events_analytics_substream_config: + retriever: + $ref: "*ref(definitions.sliced_retriever)" + requester: + $ref: "*ref(definitions.sliced_retriever.requester)" + request_options_provider: + request_parameters: + unit: "day" + stream_slicer: + type: CartesianProductStreamSlicer + stream_slicers: + - type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.custom_events_stream)" + parent_key: "event_name" + stream_slice_field: "event" + request_option: + field_name: "event" + inject_into: "request_parameter" + - "*ref(definitions.datetime_100d_slicer)" + transformations: + - type: AddFields + fields: + - path: [ "event_id" ] + value: "{{ stream_slice.event }}" + stream_cursor_field: "time" + + campaigns_analytics_stream: + $ref: "*ref(definitions.campaigns_analytics_substream_config)" + $options: + name: "campaigns_analytics" + path: "/campaigns/data_series" + canvases_analytics_stream: + $ref: "*ref(definitions.canvases_analytics_substream_config)" + $options: + name: "canvases_analytics" + path: "/canvas/data_series" + cards_analytics_stream: + $ref: "*ref(definitions.cards_analytics_substream_config)" + $options: + name: "cards_analytics" + path: "/feed/data_series" + segments_analytics_stream: + $ref: "*ref(definitions.segments_analytics_substream_config)" + $options: + name: "segments_analytics" + path: "/segments/data_series" + events_analytics_stream: + $ref: "*ref(definitions.events_analytics_substream_config)" + $options: + name: "events_analytics" + path: "/events/data_series" + +streams: + - "*ref(definitions.campaigns_stream)" + - "*ref(definitions.campaigns_analytics_stream)" + - "*ref(definitions.canvases_stream)" + - "*ref(definitions.canvases_analytics_stream)" + - "*ref(definitions.custom_events_stream)" + - "*ref(definitions.events_analytics_stream)" + - "*ref(definitions.kpi_daily_new_users_stream)" + - "*ref(definitions.kpi_daily_active_users_stream)" + - "*ref(definitions.kpi_daily_app_uninstalls_stream)" + - "*ref(definitions.cards_stream)" + - "*ref(definitions.cards_analytics_stream)" + - "*ref(definitions.segments_stream)" + - "*ref(definitions.segments_analytics_stream)" + +check: + stream_names: + - "campaigns" + +spec: + documentation_url: https://docs.airbyte.com/integrations/sources/braze + connection_specification: + $schema: http://json-schema.org/draft-07/schema# + title: Braze Spec + type: object + additionalProperties: true + required: + - url + - api_key + - start_date + properties: + url: + type: string + title: URL + description: Braze REST API endpoint + api_key: + type: string + title: Rest API Key + airbyte_secret: true + description: Braze REST API key + start_date: + type: string + format: date + title: Start date + description: Rows after this date will be synced diff --git a/airbyte-integrations/connectors/source-braze/source_braze/datetime_stream_slicer.py b/airbyte-integrations/connectors/source-braze/source_braze/datetime_stream_slicer.py new file mode 100644 index 000000000000..ba300e53cb57 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/datetime_stream_slicer.py @@ -0,0 +1,55 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import datetime +import operator +from dataclasses import dataclass +from typing import Any, Mapping, Optional + +from airbyte_cdk.sources.declarative.interpolation import InterpolatedString +from airbyte_cdk.sources.declarative.requesters import RequestOption +from airbyte_cdk.sources.declarative.requesters.request_option import RequestOptionType +from airbyte_cdk.sources.declarative.stream_slicers import DatetimeStreamSlicer +from airbyte_cdk.sources.declarative.types import StreamSlice + + +@dataclass +class DatetimeStreamSlicerComponent(DatetimeStreamSlicer): + """ + Extending DatetimeStreamSlicer by adding step option to existing start_time/end_time options + """ + + step_option: Optional[RequestOption] = None + stream_state_field_step: Optional[str] = None + + def __post_init__(self, options: Mapping[str, Any]): + super(DatetimeStreamSlicerComponent, self).__post_init__(options=options) + + self.stream_slice_field_step = InterpolatedString.create(self.stream_state_field_step or "step", options=options) + + if self.step_option and self.step_option.inject_into == RequestOptionType.path: + raise ValueError("Step cannot be passed by path") + + def _get_request_options(self, option_type: RequestOptionType, stream_slice: StreamSlice): + options = super(DatetimeStreamSlicerComponent, self)._get_request_options(option_type, stream_slice) + if self.step_option and self.step_option.inject_into == option_type: + options[self.step_option.field_name] = stream_slice.get(self.stream_slice_field_step.eval(self.config)) + return options + + def _partition_daterange(self, start, end, step: datetime.timedelta): + """ + Puts a step to each stream slice. `step` is a difference between start/end date in days. + """ + get_start_time = operator.itemgetter(self.stream_slice_field_start.eval(self.config)) + get_end_time = operator.itemgetter(self.stream_slice_field_end.eval(self.config)) + date_range = [ + dr + for dr in super(DatetimeStreamSlicerComponent, self)._partition_daterange(start, end, step) + if get_start_time(dr) < get_end_time(dr) + ] + for i, _slice in enumerate(date_range): + start_time = self._parser.parse(get_start_time(_slice), self.start_datetime.datetime_format, self._timezone) + end_time = self._parser.parse(get_end_time(_slice), self.end_datetime.datetime_format, self._timezone) + _slice[self.stream_slice_field_step.eval(self.config)] = (end_time + datetime.timedelta(days=int(bool(i))) - start_time).days + return date_range diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/TODO.md b/airbyte-integrations/connectors/source-braze/source_braze/schemas/TODO.md new file mode 100644 index 000000000000..775144471ec8 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/TODO.md @@ -0,0 +1,16 @@ +# TODO: Define your stream schemas +Your connector must describe the schema of each stream it can output using [JSONSchema](https://json-schema.org). + +You can describe the schema of your streams using one `.json` file per stream. + +## Static schemas +From the `braze.yaml` configuration file, you read the `.json` files in the `schemas/` directory. You can refer to a schema in your configuration file using the `schema_loader` component's `file_path` field. For example: +``` +schema_loader: + type: JsonSchema + file_path: "./source_braze/schemas/customers.json" +``` +Every stream specified in the configuration file should have a corresponding `.json` schema file. + +Delete this file once you're done. Or don't. Up to you :) + diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/campaigns.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/campaigns.json new file mode 100644 index 000000000000..62584ea09f18 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/campaigns.json @@ -0,0 +1,22 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "string"] + }, + "last_edited": { + "type": ["null", "string"], + "format": "date-time" + }, + "name": { + "type": ["null", "string"] + }, + "is_api_campaign": { + "type": ["null", "boolean"] + }, + "tags": { + "type": ["null", "array"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/campaigns_analytics.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/campaigns_analytics.json new file mode 100644 index 000000000000..a5fe24aa0f9e --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/campaigns_analytics.json @@ -0,0 +1,62 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "campaign_id": { + "type": ["null", "string"] + }, + "time": { + "type": ["null", "string"] + }, + "messages": { + "type": ["null", "object"], + "properties": { + "ios_push": { + "type": ["null", "array"] + }, + "android_push": { + "type": ["null", "array"] + }, + "webhook": { + "type": ["null", "array"] + }, + "email": { + "type": ["null", "array"] + }, + "sms": { + "type": ["null", "array"] + } + } + }, + "conversions_by_send_time": { + "type": ["null", "integer"] + }, + "conversions1_by_send_time": { + "type": ["null", "integer"] + }, + "conversions2_by_send_time": { + "type": ["null", "integer"] + }, + "conversions3_by_send_time": { + "type": ["null", "integer"] + }, + "conversions": { + "type": ["null", "integer"] + }, + "conversions1": { + "type": ["null", "integer"] + }, + "conversions2": { + "type": ["null", "integer"] + }, + "conversions3": { + "type": ["null", "integer"] + }, + "unique_recipients": { + "type": ["null", "integer"] + }, + "revenue": { + "type": ["null", "number"] + } + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/canvases.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/canvases.json new file mode 100644 index 000000000000..bc70306ea478 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/canvases.json @@ -0,0 +1,19 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "string"] + }, + "last_edited": { + "type": ["null", "string"], + "format": "date-time" + }, + "name": { + "type": ["null", "string"] + }, + "tags": { + "type": ["null", "array"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/canvases_analytics.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/canvases_analytics.json new file mode 100644 index 000000000000..f347e2fe19be --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/canvases_analytics.json @@ -0,0 +1,37 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "canvas_id": { + "type": ["null", "string"] + }, + "time": { + "type": ["null", "string"] + }, + "total_stats": { + "type": ["null", "object"], + "properties": { + "revenue": { + "type": ["null", "number"] + }, + "conversions": { + "type": ["null", "integer"] + }, + "conversions_by_entry_time": { + "type": ["null", "integer"] + }, + "entries": { + "type": ["null", "integer"] + } + } + }, + "variant_stats": { + "type": ["null", "object"], + "additionalProperties": true + }, + "step_stats": { + "type": ["null", "object"], + "additionalProperties": true + } + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/cards.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/cards.json new file mode 100644 index 000000000000..80f9cdaefeb6 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/cards.json @@ -0,0 +1,18 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "string"] + }, + "type": { + "type": ["null", "string"] + }, + "title": { + "type": ["null", "string"] + }, + "tags": { + "type": ["null", "array"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/cards_analytics.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/cards_analytics.json new file mode 100644 index 000000000000..6a26469276e9 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/cards_analytics.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "card_id": { + "type": ["null", "string"] + }, + "time": { + "type": ["null", "string"] + }, + "clicks" : { + "type": ["null", "integer"] + } , + "impressions" : { + "type": ["null", "integer"] + }, + "unique_clicks" : { + "type": ["null", "integer"] + }, + "unique_impressions" : { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/events.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/events.json new file mode 100644 index 000000000000..1740bb8f205e --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/events.json @@ -0,0 +1,9 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "event_name": { + "type": ["null", "string"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/events_analytics.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/events_analytics.json new file mode 100644 index 000000000000..de033f07dfe0 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/events_analytics.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "event_name": { + "type": ["null", "string"] + }, + "time": { + "type": ["null", "string"] + }, + "count": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_active_users.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_active_users.json new file mode 100644 index 000000000000..87600c5cffd2 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_active_users.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "time": { + "type": ["null", "string"] + }, + "dau": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_app_uninstalls.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_app_uninstalls.json new file mode 100644 index 000000000000..1a7b8d074756 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_app_uninstalls.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "time": { + "type": ["null", "string"] + }, + "uninstalls": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_new_users.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_new_users.json new file mode 100644 index 000000000000..3dd5017ec6c4 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/kpi_daily_new_users.json @@ -0,0 +1,12 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "time": { + "type": ["null", "string"] + }, + "new_users": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/segments.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/segments.json new file mode 100644 index 000000000000..b5e5e220caff --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/segments.json @@ -0,0 +1,18 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": ["null", "string"] + }, + "name": { + "type": ["null", "string"] + }, + "analytics_tracking_enabled": { + "type": ["null", "boolean"] + }, + "tags": { + "type": ["null", "array"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/schemas/segments_analytics.json b/airbyte-integrations/connectors/source-braze/source_braze/schemas/segments_analytics.json new file mode 100644 index 000000000000..52e8b896f3c7 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/schemas/segments_analytics.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "segment_id": { + "type": ["null", "string"] + }, + "time": { + "type": ["null", "string"] + }, + "size": { + "type": ["null", "integer"] + } + } +} diff --git a/airbyte-integrations/connectors/source-braze/source_braze/source.py b/airbyte-integrations/connectors/source-braze/source_braze/source.py new file mode 100644 index 000000000000..98996555af39 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/source.py @@ -0,0 +1,18 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource + +""" +This file provides the necessary constructs to interpret a provided declarative YAML configuration file into +source connector. + +WARNING: Do not modify this file. +""" + + +# Declarative Source +class SourceBraze(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "braze.yaml"}) diff --git a/airbyte-integrations/connectors/source-braze/source_braze/spec.yaml b/airbyte-integrations/connectors/source-braze/source_braze/spec.yaml new file mode 100644 index 000000000000..18886e9a1916 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/spec.yaml @@ -0,0 +1,25 @@ +documentationUrl: https://docs.airbyte.com/integrations/sources/braze +connectionSpecification: + $schema: http://json-schema.org/draft-07/schema# + title: Braze Spec + type: object + additionalProperties: true + required: + - url + - api_key + - start_date + properties: + url: + type: string + title: URL + description: Braze REST API endpoint + api_key: + type: string + title: Rest API Key + airbyte_secret: true + description: Braze REST API key + start_date: + type: string + format: date + title: Start date + description: Rows after this date will be synced diff --git a/airbyte-integrations/connectors/source-braze/source_braze/transformations.py b/airbyte-integrations/connectors/source-braze/source_braze/transformations.py new file mode 100644 index 000000000000..99829c062094 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/source_braze/transformations.py @@ -0,0 +1,30 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from dataclasses import dataclass +from typing import Optional + +import dpath +from airbyte_cdk.sources.declarative.transformations import AddFields +from airbyte_cdk.sources.declarative.types import Config, Record, StreamSlice, StreamState + + +@dataclass +class TransformToRecordComponent(AddFields): + def transform( + self, + record: Record, + config: Optional[Config] = None, + stream_state: Optional[StreamState] = None, + stream_slice: Optional[StreamSlice] = None, + ) -> Record: + """ + Transforms incoming string to a dictionary record. + """ + _record = {} + kwargs = {"record": record, "stream_state": stream_state, "stream_slice": stream_slice} + for parsed_field in self._parsed_fields: + value = parsed_field.value.eval(config, **kwargs) + dpath.util.new(_record, parsed_field.path, value) + return _record diff --git a/airbyte-integrations/connectors/source-braze/unit_tests/__init__.py b/airbyte-integrations/connectors/source-braze/unit_tests/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/airbyte-integrations/connectors/source-braze/unit_tests/test_datetime_slicer.py b/airbyte-integrations/connectors/source-braze/unit_tests/test_datetime_slicer.py new file mode 100644 index 000000000000..38cc6f40ab52 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/unit_tests/test_datetime_slicer.py @@ -0,0 +1,33 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from airbyte_cdk.models import SyncMode +from airbyte_cdk.sources.declarative.requesters import RequestOption +from airbyte_cdk.sources.declarative.requesters.request_option import RequestOptionType +from source_braze import DatetimeStreamSlicerComponent + + +def test_datetime_slicer(): + """ + - `step` to be added to stream slices. + - `step` value one more higher than actual difference in days between end/start dates + - `step` value exactly equal to difference in days between end/start dates for first slice item + - take into account if difference in days between end/start dates less than `step` argument for last record + """ + slicer = DatetimeStreamSlicerComponent( + start_datetime="2022-12-01", + end_datetime="2022-12-08", + step="3d", + cursor_field="time", + datetime_format="%Y-%m-%d", + config={}, + options={}, + step_option=RequestOption(field_name="step", inject_into=RequestOptionType.request_parameter, options={}) + ) + expected_slices = [ + {'start_time': '2022-12-01', 'end_time': '2022-12-03', 'step': 2}, + {'start_time': '2022-12-04', 'end_time': '2022-12-06', 'step': 3}, + {'start_time': '2022-12-07', 'end_time': '2022-12-08', 'step': 2} + ] + assert slicer.stream_slices(SyncMode.incremental, stream_state={}) == expected_slices diff --git a/airbyte-integrations/connectors/source-braze/unit_tests/test_transformations.py b/airbyte-integrations/connectors/source-braze/unit_tests/test_transformations.py new file mode 100644 index 000000000000..acb036e6c531 --- /dev/null +++ b/airbyte-integrations/connectors/source-braze/unit_tests/test_transformations.py @@ -0,0 +1,21 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from airbyte_cdk.sources.declarative.transformations.add_fields import AddedFieldDefinition +from source_braze import TransformToRecordComponent + + +def test_string_to_dict_transformation(): + """ + Test that given string record transforms to dict with given name and value as a record itself. + """ + added_field = AddedFieldDefinition( + path=["append_key"], + value="{{ record }}", + options={} + ) + transformation = TransformToRecordComponent(fields=[added_field], options={}) + record = transformation.transform(record="StringRecord", config={}, stream_state={}, stream_slice={}) + expected_record = {"append_key": "StringRecord"} + assert record == expected_record diff --git a/airbyte-integrations/connectors/source-chartmogul/source_chartmogul/spec.yaml b/airbyte-integrations/connectors/source-chartmogul/source_chartmogul/spec.yaml index c97e3f61da08..4f9481a22ea1 100644 --- a/airbyte-integrations/connectors/source-chartmogul/source_chartmogul/spec.yaml +++ b/airbyte-integrations/connectors/source-chartmogul/source_chartmogul/spec.yaml @@ -11,7 +11,7 @@ connectionSpecification: api_key: type: string title: "API key" - description: "Your Chartmogul API key. See the docs for info on how to obtain this." + description: 'Your Chartmogul API key. See the docs for info on how to obtain this.' airbyte_secret: true order: 0 start_date: @@ -24,7 +24,7 @@ connectionSpecification: interval: type: string title: "Interval" - description: "Some APIs such as Metrics require intervals to cluster data." + description: 'Some APIs such as Metrics require intervals to cluster data.' enum: ["day", "week", "month", "quarter"] default: "month" order: 2 diff --git a/airbyte-integrations/connectors/source-clickhouse/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshClickHouseSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-clickhouse/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshClickHouseSourceAcceptanceTest.java index d7ccdfb44081..7495a53cf873 100644 --- a/airbyte-integrations/connectors/source-clickhouse/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshClickHouseSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-clickhouse/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshClickHouseSourceAcceptanceTest.java @@ -20,13 +20,13 @@ import io.airbyte.integrations.source.clickhouse.ClickHouseSource; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.time.Duration; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-clickhouse/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/ClickHouseSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-clickhouse/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/ClickHouseSourceAcceptanceTest.java index 103a43e7f08e..a104e9aa512a 100644 --- a/airbyte-integrations/connectors/source-clickhouse/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/ClickHouseSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-clickhouse/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/ClickHouseSourceAcceptanceTest.java @@ -19,13 +19,13 @@ import io.airbyte.integrations.source.clickhouse.ClickHouseSource; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.time.Duration; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-close-com/source_close_com/close_com.yaml b/airbyte-integrations/connectors/source-close-com/source_close_com/close_com.yaml index 1f0495aea1fd..ce8f4ca3cbed 100644 --- a/airbyte-integrations/connectors/source-close-com/source_close_com/close_com.yaml +++ b/airbyte-integrations/connectors/source-close-com/source_close_com/close_com.yaml @@ -8,7 +8,7 @@ definitions: type: RecordSelector extractor: type: DpathExtractor - field_pointer: [ "data" ] + field_pointer: ["data"] requester: url_base: "https://api.close.com/api/v1/" http_method: "GET" @@ -47,27 +47,27 @@ definitions: inject_into: request_parameter field_name: "" stream_query_slicer: -# type: DatetimeStreamSlicer + # type: DatetimeStreamSlicer class_name: "source_close_com.CustomDatetimeStreamSlicer" start_datetime: datetime: "{{ config['start_date'] }}" datetime_format: "%Y-%m-%d" end_datetime: datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%f%z') }}" - datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 step: "365d" cursor_field: "date_updated" datetime_format: "%Y-%m-%d" stream_slicer__cursor_date_created: -# type: DatetimeStreamSlicer + # type: DatetimeStreamSlicer class_name: "source_close_com.CustomDatetimeStreamSlicer" start_datetime: datetime: "{{ config['start_date'] }}" datetime_format: "%Y-%m-%d" end_datetime: datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%f%z') }}" - datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 start_time_option: field_name: "date_created__gt" inject_into: "request_parameter" @@ -79,14 +79,14 @@ definitions: datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" stream_slicer__cursor_date_updated: -# type: DatetimeStreamSlicer + # type: DatetimeStreamSlicer class_name: "source_close_com.CustomDatetimeStreamSlicer" start_datetime: datetime: "{{ config['start_date'] }}" datetime_format: "%Y-%m-%d" end_datetime: datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%f%z') }}" - datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" # ISO8601 start_time_option: field_name: "date_updated__gt" inject_into: "request_parameter" @@ -426,7 +426,7 @@ definitions: $options: name: "smart_views" path: "saved_search" -# items_per_page: 600 + # items_per_page: 600 email_bulk_actions_stream: $ref: "*ref(definitions.full_refresh_stream)" $options: diff --git a/airbyte-integrations/connectors/source-cockroachdb-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/cockroachdb/CockroachDbEncryptSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-cockroachdb-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/cockroachdb/CockroachDbEncryptSourceAcceptanceTest.java index e1b9b5e2f985..ba50fa3216ae 100644 --- a/airbyte-integrations/connectors/source-cockroachdb-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/cockroachdb/CockroachDbEncryptSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-cockroachdb-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/cockroachdb/CockroachDbEncryptSourceAcceptanceTest.java @@ -16,13 +16,13 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import org.jooq.DSLContext; diff --git a/airbyte-integrations/connectors/source-cockroachdb/src/test-integration/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-cockroachdb/src/test-integration/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceAcceptanceTest.java index 05e4bb102e88..341eb62ebf5a 100644 --- a/airbyte-integrations/connectors/source-cockroachdb/src/test-integration/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-cockroachdb/src/test-integration/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceAcceptanceTest.java @@ -15,13 +15,13 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.Objects; diff --git a/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbJdbcSourceAcceptanceTest.java index a36caf83c62e..602fc8f00adb 100644 --- a/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbJdbcSourceAcceptanceTest.java @@ -22,6 +22,8 @@ import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; @@ -34,8 +36,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.sql.JDBCType; import java.util.*; diff --git a/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceTest.java b/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceTest.java index e092effadbf3..53eede1b63c3 100644 --- a/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceTest.java +++ b/airbyte-integrations/connectors/source-cockroachdb/src/test/java/io/airbyte/integrations/source/cockroachdb/CockroachDbSourceTest.java @@ -18,6 +18,8 @@ import io.airbyte.db.factory.DSLContextFactory; import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.JdbcUtils; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteMessage.Type; @@ -25,8 +27,6 @@ import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.util.*; diff --git a/airbyte-integrations/connectors/source-coingecko-coins/source_coingecko_coins/coingecko_coins.yaml b/airbyte-integrations/connectors/source-coingecko-coins/source_coingecko_coins/coingecko_coins.yaml index 31a622c19add..4e020fb7037a 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/source_coingecko_coins/coingecko_coins.yaml +++ b/airbyte-integrations/connectors/source-coingecko-coins/source_coingecko_coins/coingecko_coins.yaml @@ -3,7 +3,7 @@ version: "0.1.0" definitions: selector: extractor: - field_pointer: [ ] + field_pointer: [] requester: url_base: "https://{{ 'api' if not config['api_key'] else 'pro-api' }}.coingecko.com/api/v3/coins/{{ config['coin_id'] }}" http_method: "GET" @@ -57,7 +57,7 @@ definitions: transformations: - type: AddFields fields: - - path: [ "date" ] + - path: ["date"] value: "{{ stream_slice['start_time'] }}" streams: diff --git a/airbyte-integrations/connectors/source-db2-strict-encrypt/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2StrictEncryptSourceCertificateAcceptanceTest.java b/airbyte-integrations/connectors/source-db2-strict-encrypt/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2StrictEncryptSourceCertificateAcceptanceTest.java index 4b754cd2689a..b684e7377040 100644 --- a/airbyte-integrations/connectors/source-db2-strict-encrypt/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2StrictEncryptSourceCertificateAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-db2-strict-encrypt/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2StrictEncryptSourceCertificateAcceptanceTest.java @@ -15,13 +15,13 @@ import io.airbyte.integrations.source.db2.Db2Source; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.io.File; import java.io.IOException; diff --git a/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceAcceptanceTest.java b/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceAcceptanceTest.java index 0f967901c328..2879b5a8ef07 100644 --- a/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceAcceptanceTest.java @@ -19,6 +19,8 @@ import io.airbyte.integrations.source.db2.Db2Source; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.CatalogHelpers; @@ -26,8 +28,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.io.IOException; import java.util.Collections; diff --git a/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceCertificateAcceptanceTest.java b/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceCertificateAcceptanceTest.java index 40da2e8f8011..b524741a56c9 100644 --- a/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceCertificateAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-db2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/Db2SourceCertificateAcceptanceTest.java @@ -16,13 +16,13 @@ import io.airbyte.integrations.source.db2.Db2Source; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.io.File; import java.io.IOException; diff --git a/airbyte-integrations/connectors/source-delighted/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-delighted/integration_tests/abnormal_state.json index b51b0da38377..e7fd75621441 100644 --- a/airbyte-integrations/connectors/source-delighted/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-delighted/integration_tests/abnormal_state.json @@ -2,29 +2,29 @@ { "type": "STREAM", "stream": { - "stream_state": {"created_at": 4126108288}, - "stream_descriptor": {"name": "people"} + "stream_state": { "created_at": 4126108288 }, + "stream_descriptor": { "name": "people" } } }, { "type": "STREAM", "stream": { - "stream_state": {"unsubscribed_at": 4126108288}, - "stream_descriptor": {"name": "unsubscribes"} + "stream_state": { "unsubscribed_at": 4126108288 }, + "stream_descriptor": { "name": "unsubscribes" } } }, { "type": "STREAM", "stream": { - "stream_state": {"bounced_at": 4126108288}, - "stream_descriptor": {"name": "bounces"} + "stream_state": { "bounced_at": 4126108288 }, + "stream_descriptor": { "name": "bounces" } } }, { "type": "STREAM", "stream": { - "stream_state": {"updated_at": 4126108288}, - "stream_descriptor": {"name": "survey_responses"} + "stream_state": { "updated_at": 4126108288 }, + "stream_descriptor": { "name": "survey_responses" } } } ] diff --git a/airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbSource.java b/airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbSource.java index 69c4f7801fc2..f2eea84cfa1b 100644 --- a/airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbSource.java +++ b/airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbSource.java @@ -20,13 +20,13 @@ import io.airbyte.integrations.source.relationaldb.StateDecoratingIterator; import io.airbyte.integrations.source.relationaldb.state.StateManager; import io.airbyte.integrations.source.relationaldb.state.StateManagerFactory; +import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; import io.airbyte.protocol.models.v0.SyncMode; import java.util.Collections; import java.util.List; diff --git a/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbDataFactory.java b/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbDataFactory.java index c164ee449015..78dd0bd372da 100644 --- a/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbDataFactory.java +++ b/airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbDataFactory.java @@ -8,12 +8,12 @@ import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import io.airbyte.commons.json.Jsons; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyConstants.java b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyConstants.java index 6c086882247b..bb26bf404d02 100644 --- a/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyConstants.java +++ b/airbyte-integrations/connectors/source-e2e-test/src/main/java/io/airbyte/integrations/source/e2e_test/LegacyConstants.java @@ -4,10 +4,10 @@ package io.airbyte.integrations.source.e2e_test; -import io.airbyte.protocol.models.v0.AirbyteCatalog; -import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +import io.airbyte.protocol.models.v0.CatalogHelpers; public final class LegacyConstants { diff --git a/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchConnection.java b/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchConnection.java index e5aca6e1dba4..4c98df633c67 100644 --- a/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchConnection.java +++ b/airbyte-integrations/connectors/source-elasticsearch/src/main/java/io/airbyte/integrations/source/elasticsearch/ElasticsearchConnection.java @@ -150,7 +150,7 @@ public Map getMappings(final List indices) thro Map mappings = new HashMap<>(); // Avoid too_long_frame_exception error by "batching" // the indexes mapping calls - for(int i = 0; i < indices.size(); i += chunk){ + for (int i = 0; i < indices.size(); i += chunk) { String[] copiedIndices = indices.subList(i, Math.min(indices.size(), i + chunk)).toArray(String[]::new); GetMappingsRequest request = new GetMappingsRequest(); request.indices(copiedIndices); diff --git a/airbyte-integrations/connectors/source-faker/main.py b/airbyte-integrations/connectors/source-faker/main.py index eb00656da52e..15947dc56432 100644 --- a/airbyte-integrations/connectors/source-faker/main.py +++ b/airbyte-integrations/connectors/source-faker/main.py @@ -1,7 +1,6 @@ # # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # -# import sys diff --git a/airbyte-integrations/connectors/source-gitlab/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-gitlab/integration_tests/abnormal_state.json index a26e6750b92e..55f73258b91e 100644 --- a/airbyte-integrations/connectors/source-gitlab/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-gitlab/integration_tests/abnormal_state.json @@ -51,4 +51,4 @@ } } } -] \ No newline at end of file +] diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/schemas/pagespeed.json b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/schemas/pagespeed.json index 68be67146b6d..b6503bd4d032 100644 --- a/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/schemas/pagespeed.json +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/source_google_pagespeed_insights/schemas/pagespeed.json @@ -461,4 +461,4 @@ "type": "string" } } -} \ No newline at end of file +} diff --git a/airbyte-integrations/connectors/source-harvest/Dockerfile b/airbyte-integrations/connectors/source-harvest/Dockerfile index 3c63ca2bef1b..34f378d04b7c 100644 --- a/airbyte-integrations/connectors/source-harvest/Dockerfile +++ b/airbyte-integrations/connectors/source-harvest/Dockerfile @@ -12,5 +12,5 @@ RUN pip install . ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.11 +LABEL io.airbyte.version=0.1.12 LABEL io.airbyte.name=airbyte/source-harvest diff --git a/airbyte-integrations/connectors/source-harvest/acceptance-test-config.yml b/airbyte-integrations/connectors/source-harvest/acceptance-test-config.yml index b7aeaf3388ee..34c9926a73e1 100644 --- a/airbyte-integrations/connectors/source-harvest/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-harvest/acceptance-test-config.yml @@ -1,29 +1,37 @@ connector_image: airbyte/source-harvest:dev -tests: +test_strictness_level: "high" +acceptance_tests: spec: - - spec_path: "source_harvest/spec.json" + tests: + - spec_path: "source_harvest/spec.json" connection: - - config_path: "secrets/config.json" - status: "succeed" - - config_path: "secrets/old_config.json" - status: "succeed" - - config_path: "secrets/config_oauth.json" - status: "succeed" - - config_path: "integration_tests/invalid_config.json" - status: "failed" + tests: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "secrets/old_config.json" + status: "succeed" + - config_path: "secrets/config_oauth.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" discovery: - - config_path: "secrets/config.json" + tests: + - config_path: "secrets/config.json" basic_read: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" + tests: + - config_path: "secrets/config.json" + expect_records: + path: "integration_tests/expected_records.txt" incremental: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - future_state_path: "integration_tests/abnormal_state.json" - cursor_paths: - contacts: ["updated_at"] - expenses_clients: ["to"] - timeout_seconds: 2400 + tests: + - config_path: "secrets/config_with_date_range.json" + configured_catalog_path: "integration_tests/incremental_catalog.json" + future_state: + future_state_path: "integration_tests/abnormal_state.json" + cursor_paths: + contacts: ["updated_at"] + expenses_clients: ["to"] full_refresh: - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-harvest/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-harvest/integration_tests/expected_records.txt new file mode 100644 index 000000000000..8a38cafbf8cf --- /dev/null +++ b/airbyte-integrations/connectors/source-harvest/integration_tests/expected_records.txt @@ -0,0 +1,140 @@ +{"stream": "clients", "data": {"id": 10749825, "name": "First client", "is_active": true, "address": null, "statement_key": "48d746ca9125fe984b3bd800747669cc", "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-25T16:16:52Z", "currency": "USD"}, "emitted_at": 1671186215360} +{"stream": "clients", "data": {"id": 10748673, "name": "Users", "is_active": true, "address": null, "statement_key": "6b70f27acd3bf496daba22316cb750d3", "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "currency": "USD"}, "emitted_at": 1671186215360} +{"stream": "clients", "data": {"id": 10748671, "name": "[SAMPLE] Client B", "is_active": true, "address": null, "statement_key": "61faacd69e255af516cd8d772073afd4", "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "currency": "USD"}, "emitted_at": 1671186215361} +{"stream": "clients", "data": {"id": 10748670, "name": "[SAMPLE] Client A", "is_active": true, "address": null, "statement_key": "1f2a8709628bb49a3b673dfcf1d09319", "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-25T16:17:55Z", "currency": "USD"}, "emitted_at": 1671186215361} +{"stream": "contacts", "data": {"id": 8468604, "title": null, "first_name": "[SAMPLE] Morgan", "last_name": "Minute", "email": "morgan@harvestsample.com", "phone_office": "", "phone_mobile": "", "fax": "", "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "client": {"id": 10748671, "name": "[SAMPLE] Client B"}}, "emitted_at": 1671186215782} +{"stream": "contacts", "data": {"id": 8468603, "title": null, "first_name": "[SAMPLE] Sofia", "last_name": "Stopwatch", "email": "sofia@harvestsample.com", "phone_office": "", "phone_mobile": "", "fax": "", "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "client": {"id": 10748670, "name": "[SAMPLE] Client A"}}, "emitted_at": 1671186215782} +{"stream": "company", "data": {"base_uri": "https://airbyte.harvestapp.com", "full_domain": "airbyte.harvestapp.com", "name": "Airbyte", "is_active": true, "week_start_day": "Monday", "wants_timestamp_timers": false, "time_format": "hours_minutes", "date_format": "%m/%d/%Y", "plan_type": "simple-v4", "expense_feature": true, "invoice_feature": true, "estimate_feature": true, "team_feature": true, "weekly_capacity": 144000, "approval_feature": true, "clock": "12h", "currency": "USD", "currency_code_display": "iso_code_none", "currency_symbol_display": "symbol_before", "decimal_symbol": ".", "thousands_separator": ",", "color_scheme": "orange"}, "emitted_at": 1671186216093} +{"stream": "invoices", "data": {"id": 28174545, "client_key": "489645d5b2becebe06f7a696a4d0db6a8a1c8ff1", "number": "2", "purchase_order": "", "amount": 22000.0, "due_amount": 21500.0, "tax": null, "tax_amount": 0.0, "tax2": null, "tax2_amount": 0.0, "discount": null, "discount_amount": 0.0, "subject": "Subj", "notes": "", "state": "draft", "period_start": null, "period_end": null, "issue_date": "2021-05-25", "due_date": "2021-05-25", "payment_term": "upon receipt", "sent_at": null, "paid_at": null, "closed_at": null, "recurring_invoice_id": null, "created_at": "2021-05-25T16:17:55Z", "updated_at": "2021-05-26T09:07:06Z", "paid_date": null, "currency": "USD", "client": {"id": 10748670, "name": "[SAMPLE] Client A"}, "estimate": null, "retainer": null, "creator": {"id": 3758380, "name": "Airbyte Developer"}, "line_items": [{"id": 132632435, "kind": "Service", "description": "[SAMPLE] Fixed Fee Project", "quantity": 1.0, "unit_price": 21900.0, "amount": 21900.0, "taxed": false, "taxed2": false, "project": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE"}}, {"id": 132632436, "kind": "Product", "description": "", "quantity": 1.0, "unit_price": 100.0, "amount": 100.0, "taxed": false, "taxed2": false, "project": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE"}}]}, "emitted_at": 1671186216397} +{"stream": "invoices", "data": {"id": 28174531, "client_key": "1a3a59c71a8dd22b3a341807456c754220dc202c", "number": "1", "purchase_order": "", "amount": 76.9, "due_amount": 0.0, "tax": null, "tax_amount": 0.0, "tax2": null, "tax2_amount": 0.0, "discount": 4.0, "discount_amount": 3.2, "subject": "", "notes": "Note", "state": "paid", "period_start": "2021-05-05", "period_end": "2021-05-05", "issue_date": "2021-05-25", "due_date": "2021-05-25", "payment_term": "upon receipt", "sent_at": "2021-05-25T16:46:28Z", "paid_at": "2021-05-25T00:00:00Z", "closed_at": null, "recurring_invoice_id": null, "created_at": "2021-05-25T16:16:51Z", "updated_at": "2021-05-26T09:06:37Z", "paid_date": "2021-05-25", "currency": "USD", "client": {"id": 10749825, "name": "First client"}, "estimate": null, "retainer": null, "creator": {"id": 3758380, "name": "Airbyte Developer"}, "line_items": [{"id": 132632398, "kind": "Service", "description": "[FP] First project: Design (05/05/2021 - 05/05/2021)", "quantity": 0.01, "unit_price": 10.0, "amount": 0.1, "taxed": false, "taxed2": false, "project": {"id": 28674500, "name": "First project", "code": "FP"}}, {"id": 132632399, "kind": "Service", "description": "[FP] First project: Programming (05/05/2021 - 05/05/2021)", "quantity": 8.0, "unit_price": 10.0, "amount": 80.0, "taxed": false, "taxed2": false, "project": {"id": 28674500, "name": "First project", "code": "FP"}}]}, "emitted_at": 1671186216397} +{"stream": "invoice_messages", "data": {"id": 57176997, "sent_by": "Airbyte Developer", "sent_by_email": "integration-test@airbyte.io", "sent_from": "Airbyte Developer", "sent_from_email": "integration-test@airbyte.io", "include_link_to_client_invoice": false, "send_me_a_copy": true, "thank_you": false, "reminder": false, "send_reminder_on": null, "created_at": "2021-05-25T16:46:28Z", "updated_at": "2021-05-25T16:46:28Z", "attach_pdf": false, "event_type": null, "recipients": [{"name": "Airbyte Developer", "email": "integration-test@airbyte.io"}], "subject": "Invoice #1 from Airbyte", "body": "---------------------------------------------\r\nInvoice Summary\r\n---------------------------------------------\r\nInvoice ID: 1\r\nIssue Date: 05/25/2021\r\nClient: First client\r\nP.O. Number: \r\nAmount: $76.90\r\nDue: 05/25/2021 (upon receipt)\r\n\r\nThank you!\r\n---------------------------------------------", "parent_id": 28174531}, "emitted_at": 1671186217312} +{"stream": "invoice_messages", "data": {"id": 57176927, "sent_by": "Airbyte Developer", "sent_by_email": "integration-test@airbyte.io", "sent_from": "Airbyte Developer", "sent_from_email": "integration-test@airbyte.io", "include_link_to_client_invoice": false, "send_me_a_copy": true, "thank_you": false, "reminder": false, "send_reminder_on": null, "created_at": "2021-05-25T16:43:30Z", "updated_at": "2021-05-25T16:43:30Z", "attach_pdf": true, "event_type": null, "recipients": [{"name": "Airbyte Developer", "email": "integration-test@airbyte.io"}], "subject": "Invoice #1 from Airbyte", "body": "---------------------------------------------\r\nInvoice Summary\r\n---------------------------------------------\r\nInvoice ID: 1\r\nIssue Date: 05/25/2021\r\nClient: First client\r\nP.O. Number: \r\nAmount: $76.90\r\nDue: 05/25/2021 (upon receipt)\r\n\r\nThe detailed invoice is attached as a PDF.\r\n\r\nThank you!\r\n---------------------------------------------", "parent_id": 28174531}, "emitted_at": 1671186217313} +{"stream": "invoice_payments", "data": {"id": 21857618, "amount": 500.0, "paid_at": "2021-05-26T00:00:00Z", "recorded_by": "Airbyte Developer", "recorded_by_email": "integration-test@airbyte.io", "notes": "", "transaction_id": null, "created_at": "2021-05-26T09:07:06Z", "updated_at": "2021-05-26T09:07:06Z", "paid_date": "2021-05-26", "payment_gateway": {"id": null, "name": null}, "parent_id": 28174545}, "emitted_at": 1671186217900} +{"stream": "invoice_item_categories", "data": {"id": 2732435, "name": "Product", "use_as_service": false, "use_as_expense": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186218442} +{"stream": "invoice_item_categories", "data": {"id": 2732434, "name": "Service", "use_as_service": true, "use_as_expense": false, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186218443} +{"stream": "estimates", "data": {"id": 2695071, "client_key": "de25b9eb3e82c0d5032777559e8ac0cfdfbf82b1", "number": "1", "purchase_order": "", "amount": 0.0, "tax": null, "tax_amount": 0.0, "tax2": null, "tax2_amount": 0.0, "discount": null, "discount_amount": 0.0, "subject": "", "notes": "", "state": "sent", "issue_date": "2021-05-27", "sent_at": "2021-05-27T18:12:42Z", "created_at": "2021-05-27T18:12:30Z", "updated_at": "2021-05-27T18:12:42Z", "accepted_at": null, "declined_at": null, "currency": "USD", "client": {"id": 10748670, "name": "[SAMPLE] Client A"}, "creator": {"id": 3758380, "name": "Airbyte Developer"}, "line_items": []}, "emitted_at": 1671186218730} +{"stream": "estimate_messages", "data": {"id": 4857940, "sent_by": "Airbyte Developer", "sent_by_email": "integration-test@airbyte.io", "sent_from": "Airbyte Developer", "sent_from_email": "integration-test@airbyte.io", "send_me_a_copy": true, "created_at": "2021-05-27T18:12:42Z", "updated_at": "2021-05-27T18:12:42Z", "recipients": [{"name": "Airbyte Developer", "email": "integration-test@airbyte.io"}], "event_type": null, "subject": "Estimate #1 from Airbyte", "body": "---------------------------------------------\r\nEstimate Summary\r\n---------------------------------------------\r\nEstimate ID: 1\r\nEstimate Date: 05/27/2021\r\nClient: [SAMPLE] Client A\r\nP.O. Number: \r\nAmount: $0.00\r\n\r\nYou can view the estimate here:\r\n\r\n%estimate_url%\r\n\r\nThank you!\r\n---------------------------------------------", "parent_id": 2695071}, "emitted_at": 1671186219367} +{"stream": "estimate_item_categories", "data": {"id": 2614512, "name": "Product", "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186219669} +{"stream": "estimate_item_categories", "data": {"id": 2614511, "name": "Service", "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186219669} +{"stream": "expenses", "data": {"id": 31751921, "spent_date": "2021-04-27", "notes": "This is a sample expense entry.", "total_cost": 51.0, "units": 1.0, "billable": true, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758382, "name": "[SAMPLE] Hiromi Hourglass"}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "project": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE"}, "expense_category": {"id": 7892982, "name": "Meals", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326464, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 125.0}, "invoice": null}, "emitted_at": 1671186219981} +{"stream": "expenses", "data": {"id": 31751926, "spent_date": "2021-04-25", "notes": "This is a sample expense entry.", "total_cost": 142.0, "units": 1.0, "billable": true, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758381, "name": "[SAMPLE] Kiran Kronological"}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE"}, "expense_category": {"id": 7892984, "name": "Transportation", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326479, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 125.0}, "invoice": null}, "emitted_at": 1671186219981} +{"stream": "expenses", "data": {"id": 31751920, "spent_date": "2021-04-20", "notes": "This is a sample expense entry.", "total_cost": 30.0, "units": 1.0, "billable": true, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758381, "name": "[SAMPLE] Kiran Kronological"}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "project": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE"}, "expense_category": {"id": 7892982, "name": "Meals", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326463, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 125.0}, "invoice": null}, "emitted_at": 1671186219981} +{"stream": "expenses", "data": {"id": 31751924, "spent_date": "2021-04-18", "notes": "This is a sample expense entry.", "total_cost": 58.0, "units": 1.0, "billable": true, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758382, "name": "[SAMPLE] Hiromi Hourglass"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671448, "name": "Monthly Retainer", "code": "SAMPLE"}, "expense_category": {"id": 7892981, "name": "Entertainment", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326475, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 125.0}, "invoice": null}, "emitted_at": 1671186219981} +{"stream": "expenses", "data": {"id": 31751927, "spent_date": "2021-04-16", "notes": "This is a sample expense entry.", "total_cost": 84.0, "units": 1.0, "billable": true, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758384, "name": "[SAMPLE] Warrin Wristwatch"}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "project": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE"}, "expense_category": {"id": 7892984, "name": "Transportation", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326466, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 175.0}, "invoice": null}, "emitted_at": 1671186219982} +{"stream": "expenses", "data": {"id": 31751922, "spent_date": "2021-04-14", "notes": "This is a sample expense entry.", "total_cost": 23.0, "units": 1.0, "billable": true, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758383, "name": "[SAMPLE] Tamara Timekeeper"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE"}, "expense_category": {"id": 7892984, "name": "Transportation", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326470, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": 35.0, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": 175.0}, "invoice": null}, "emitted_at": 1671186219982} +{"stream": "expenses", "data": {"id": 31751923, "spent_date": "2021-04-10", "notes": "This is a sample expense entry.", "total_cost": 200.0, "units": 1.0, "billable": false, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758381, "name": "[SAMPLE] Kiran Kronological"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE"}, "expense_category": {"id": 7892983, "name": "Lodging", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326468, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": 33.0, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": 125.0}, "invoice": null}, "emitted_at": 1671186219982} +{"stream": "expenses", "data": {"id": 31751928, "spent_date": "2021-04-07", "notes": "This is a sample expense entry.", "total_cost": 174.0, "units": 1.0, "billable": false, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758384, "name": "[SAMPLE] Warrin Wristwatch"}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "project": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE"}, "expense_category": {"id": 7892984, "name": "Transportation", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326466, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 175.0}, "invoice": null}, "emitted_at": 1671186219982} +{"stream": "expenses", "data": {"id": 31751925, "spent_date": "2021-04-07", "notes": "This is a sample expense entry.", "total_cost": 180.0, "units": 1.0, "billable": true, "receipt": null, "is_closed": false, "is_locked": false, "is_billed": false, "locked_reason": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758384, "name": "[SAMPLE] Warrin Wristwatch"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671448, "name": "Monthly Retainer", "code": "SAMPLE"}, "expense_category": {"id": 7892982, "name": "Meals", "unit_price": null, "unit_name": null}, "user_assignment": {"id": 286326477, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 175.0}, "invoice": null}, "emitted_at": 1671186219982} +{"stream": "expense_categories", "data": {"id": 7892986, "name": "Mileage", "unit_name": "mile", "unit_price": 0.575, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220285} +{"stream": "expense_categories", "data": {"id": 7892985, "name": "Other", "unit_name": null, "unit_price": null, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220285} +{"stream": "expense_categories", "data": {"id": 7892984, "name": "Transportation", "unit_name": null, "unit_price": null, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220285} +{"stream": "expense_categories", "data": {"id": 7892983, "name": "Lodging", "unit_name": null, "unit_price": null, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220285} +{"stream": "expense_categories", "data": {"id": 7892982, "name": "Meals", "unit_name": null, "unit_price": null, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220285} +{"stream": "expense_categories", "data": {"id": 7892981, "name": "Entertainment", "unit_name": null, "unit_price": null, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220286} +{"stream": "tasks", "data": {"id": 16575211, "name": "Vacation", "billable_by_default": false, "default_hourly_rate": null, "is_default": false, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220595} +{"stream": "tasks", "data": {"id": 16575210, "name": "Business Development", "billable_by_default": false, "default_hourly_rate": null, "is_default": true, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220595} +{"stream": "tasks", "data": {"id": 16575209, "name": "Project Management", "billable_by_default": true, "default_hourly_rate": null, "is_default": true, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220595} +{"stream": "tasks", "data": {"id": 16575208, "name": "Marketing", "billable_by_default": true, "default_hourly_rate": null, "is_default": true, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220596} +{"stream": "tasks", "data": {"id": 16575207, "name": "Programming", "billable_by_default": true, "default_hourly_rate": null, "is_default": true, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220596} +{"stream": "tasks", "data": {"id": 16575206, "name": "Design", "billable_by_default": true, "default_hourly_rate": null, "is_default": true, "is_active": true, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2021-05-05T08:17:57Z"}, "emitted_at": 1671186220596} +{"stream": "time_entries", "data": {"id": 1494415019, "spent_date": "2021-05-05", "hours": 0.01, "hours_without_timer": 0.01, "rounded_hours": 0.01, "notes": "", "is_locked": true, "locked_reason": "Item Invoiced and Locked for this Time Period", "is_closed": false, "is_billed": true, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": true, "budgeted": false, "billable_rate": 10.0, "cost_rate": null, "created_at": "2021-05-05T12:53:38Z", "updated_at": "2021-05-25T16:16:52Z", "user": {"id": 3758380, "name": "Airbyte Developer"}, "client": {"id": 10749825, "name": "First client", "currency": "USD"}, "project": {"id": 28674500, "name": "First project", "code": "FP"}, "task": {"id": 16575206, "name": "Design"}, "user_assignment": {"id": 286365663, "is_project_manager": true, "is_active": true, "use_default_rates": false, "budget": null, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": 10.0}, "task_assignment": {"id": 307640132, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null}, "invoice": {"id": 28174531, "number": "1"}, "external_reference": null}, "emitted_at": 1671186221004} +{"stream": "time_entries", "data": {"id": 1494414737, "spent_date": "2021-05-05", "hours": 8.0, "hours_without_timer": 8.0, "rounded_hours": 8.0, "notes": "", "is_locked": true, "locked_reason": "Item Invoiced and Locked for this Time Period", "is_closed": false, "is_billed": true, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": true, "budgeted": false, "billable_rate": 10.0, "cost_rate": null, "created_at": "2021-05-05T12:53:23Z", "updated_at": "2021-05-25T16:16:52Z", "user": {"id": 3758380, "name": "Airbyte Developer"}, "client": {"id": 10749825, "name": "First client", "currency": "USD"}, "project": {"id": 28674500, "name": "First project", "code": "FP"}, "task": {"id": 16575207, "name": "Programming"}, "user_assignment": {"id": 286365663, "is_project_manager": true, "is_active": true, "use_default_rates": false, "budget": null, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": 10.0}, "task_assignment": {"id": 307640134, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null}, "invoice": {"id": 28174531, "number": "1"}, "external_reference": null}, "emitted_at": 1671186221005} +{"stream": "time_entries", "data": {"id": 1494238685, "spent_date": "2021-05-05", "hours": 0.71, "hours_without_timer": 0.71, "rounded_hours": 0.71, "notes": "This is a sample time entry.", "is_locked": false, "locked_reason": null, "is_closed": false, "is_billed": false, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": false, "budgeted": true, "billable_rate": null, "cost_rate": 60.0, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758384, "name": "[SAMPLE] Warrin Wristwatch"}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE"}, "task": {"id": 16575208, "name": "Marketing"}, "user_assignment": {"id": 286326482, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 175.0}, "task_assignment": {"id": 307607000, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null}, "invoice": null, "external_reference": null}, "emitted_at": 1671186221005} +{"stream": "time_entries", "data": {"id": 1494238684, "spent_date": "2021-05-05", "hours": 2.62, "hours_without_timer": 2.62, "rounded_hours": 2.62, "notes": "This is a sample time entry.", "is_locked": false, "locked_reason": null, "is_closed": false, "is_billed": false, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": false, "budgeted": true, "billable_rate": null, "cost_rate": 60.0, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758384, "name": "[SAMPLE] Warrin Wristwatch"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE"}, "task": {"id": 16575210, "name": "Business Development"}, "user_assignment": {"id": 286326471, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": 33.0, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": 175.0}, "task_assignment": {"id": 307606988, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null}, "invoice": null, "external_reference": null}, "emitted_at": 1671186221005} +{"stream": "time_entries", "data": {"id": 1494238683, "spent_date": "2021-05-05", "hours": 1.42, "hours_without_timer": 1.42, "rounded_hours": 1.42, "notes": "This is a sample time entry.", "is_locked": false, "locked_reason": null, "is_closed": false, "is_billed": false, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": false, "budgeted": true, "billable_rate": null, "cost_rate": 60.0, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758384, "name": "[SAMPLE] Warrin Wristwatch"}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE"}, "task": {"id": 16575209, "name": "Project Management"}, "user_assignment": {"id": 286326482, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 175.0}, "task_assignment": {"id": 307607002, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null}, "invoice": null, "external_reference": null}, "emitted_at": 1671186221005} +{"stream": "time_entries", "data": {"id": 1494238682, "spent_date": "2021-05-05", "hours": 1.98, "hours_without_timer": 1.98, "rounded_hours": 1.98, "notes": "This is a sample time entry.", "is_locked": false, "locked_reason": null, "is_closed": false, "is_billed": false, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": false, "budgeted": true, "billable_rate": null, "cost_rate": 60.0, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758383, "name": "[SAMPLE] Tamara Timekeeper"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE"}, "task": {"id": 16575210, "name": "Business Development"}, "user_assignment": {"id": 286326470, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": 35.0, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": 175.0}, "task_assignment": {"id": 307606988, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null}, "invoice": null, "external_reference": null}, "emitted_at": 1671186221005} +{"stream": "time_entries", "data": {"id": 1494238681, "spent_date": "2021-05-05", "hours": 1.21, "hours_without_timer": 1.21, "rounded_hours": 1.21, "notes": "This is a sample time entry.", "is_locked": false, "locked_reason": null, "is_closed": false, "is_billed": false, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": false, "budgeted": true, "billable_rate": null, "cost_rate": 60.0, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758383, "name": "[SAMPLE] Tamara Timekeeper"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE"}, "task": {"id": 16575210, "name": "Business Development"}, "user_assignment": {"id": 286326470, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": 35.0, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": 175.0}, "task_assignment": {"id": 307606988, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null}, "invoice": null, "external_reference": null}, "emitted_at": 1671186221006} +{"stream": "time_entries", "data": {"id": 1494238680, "spent_date": "2021-05-05", "hours": 2.38, "hours_without_timer": 2.38, "rounded_hours": 2.38, "notes": "This is a sample time entry.", "is_locked": false, "locked_reason": null, "is_closed": false, "is_billed": false, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": true, "budgeted": true, "billable_rate": 175.0, "cost_rate": 60.0, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758383, "name": "[SAMPLE] Tamara Timekeeper"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE"}, "task": {"id": 16575208, "name": "Marketing"}, "user_assignment": {"id": 286326470, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": 35.0, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": 175.0}, "task_assignment": {"id": 307606990, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null}, "invoice": null, "external_reference": null}, "emitted_at": 1671186221006} +{"stream": "time_entries", "data": {"id": 1494238679, "spent_date": "2021-05-05", "hours": 0.9, "hours_without_timer": 0.9, "rounded_hours": 0.9, "notes": "This is a sample time entry.", "is_locked": false, "locked_reason": null, "is_closed": false, "is_billed": false, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": true, "budgeted": true, "billable_rate": 175.0, "cost_rate": 60.0, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758383, "name": "[SAMPLE] Tamara Timekeeper"}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "project": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE"}, "task": {"id": 16575209, "name": "Project Management"}, "user_assignment": {"id": 286326465, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 175.0}, "task_assignment": {"id": 307606987, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null}, "invoice": null, "external_reference": null}, "emitted_at": 1671186221006} +{"stream": "time_entries", "data": {"id": 1494238678, "spent_date": "2021-05-05", "hours": 1.66, "hours_without_timer": 1.66, "rounded_hours": 1.66, "notes": "This is a sample time entry.", "is_locked": false, "locked_reason": null, "is_closed": false, "is_billed": false, "timer_started_at": null, "started_time": null, "ended_time": null, "is_running": false, "billable": true, "budgeted": true, "billable_rate": 125.0, "cost_rate": 40.0, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "user": {"id": 3758382, "name": "[SAMPLE] Hiromi Hourglass"}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "project": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE"}, "task": {"id": 16575208, "name": "Marketing"}, "user_assignment": {"id": 286326469, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": 49.0, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": 125.0}, "task_assignment": {"id": 307606990, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null}, "invoice": null, "external_reference": null}, "emitted_at": 1671186221006} +{"stream": "user_assignments", "data": {"id": 286365663, "is_project_manager": true, "is_active": true, "use_default_rates": false, "budget": null, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": 10.0, "project": {"id": 28674500, "name": "First project", "code": "FP"}, "user": {"id": 3758380, "name": "Airbyte Developer"}}, "emitted_at": 1671186223794} +{"stream": "user_assignments", "data": {"id": 286326492, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": null, "project": {"id": 28671451, "name": "Airbyte", "code": null}, "user": {"id": 3758380, "name": "Airbyte Developer"}}, "emitted_at": 1671186223794} +{"stream": "user_assignments", "data": {"id": 286326482, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 175.0, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE"}, "user": {"id": 3758384, "name": "[SAMPLE] Warrin Wristwatch"}}, "emitted_at": 1671186223795} +{"stream": "user_assignments", "data": {"id": 286326481, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 175.0, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE"}, "user": {"id": 3758383, "name": "[SAMPLE] Tamara Timekeeper"}}, "emitted_at": 1671186223795} +{"stream": "user_assignments", "data": {"id": 286326480, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 125.0, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE"}, "user": {"id": 3758382, "name": "[SAMPLE] Hiromi Hourglass"}}, "emitted_at": 1671186223795} +{"stream": "user_assignments", "data": {"id": 286326479, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 125.0, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE"}, "user": {"id": 3758381, "name": "[SAMPLE] Kiran Kronological"}}, "emitted_at": 1671186223796} +{"stream": "user_assignments", "data": {"id": 286326478, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": null, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE"}, "user": {"id": 3758380, "name": "Airbyte Developer"}}, "emitted_at": 1671186223796} +{"stream": "user_assignments", "data": {"id": 286326477, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 175.0, "project": {"id": 28671448, "name": "Monthly Retainer", "code": "SAMPLE"}, "user": {"id": 3758384, "name": "[SAMPLE] Warrin Wristwatch"}}, "emitted_at": 1671186223796} +{"stream": "user_assignments", "data": {"id": 286326476, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 175.0, "project": {"id": 28671448, "name": "Monthly Retainer", "code": "SAMPLE"}, "user": {"id": 3758383, "name": "[SAMPLE] Tamara Timekeeper"}}, "emitted_at": 1671186223797} +{"stream": "user_assignments", "data": {"id": 286326475, "is_project_manager": true, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 125.0, "project": {"id": 28671448, "name": "Monthly Retainer", "code": "SAMPLE"}, "user": {"id": 3758382, "name": "[SAMPLE] Hiromi Hourglass"}}, "emitted_at": 1671186223797} +{"stream": "task_assignments", "data": {"id": 307640135, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "project": {"id": 28674500, "name": "First project", "code": "FP"}, "task": {"id": 16575209, "name": "Project Management"}}, "emitted_at": 1671186224179} +{"stream": "task_assignments", "data": {"id": 307640134, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "project": {"id": 28674500, "name": "First project", "code": "FP"}, "task": {"id": 16575207, "name": "Programming"}}, "emitted_at": 1671186224179} +{"stream": "task_assignments", "data": {"id": 307640133, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "project": {"id": 28674500, "name": "First project", "code": "FP"}, "task": {"id": 16575208, "name": "Marketing"}}, "emitted_at": 1671186224179} +{"stream": "task_assignments", "data": {"id": 307640132, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "project": {"id": 28674500, "name": "First project", "code": "FP"}, "task": {"id": 16575206, "name": "Design"}}, "emitted_at": 1671186224179} +{"stream": "task_assignments", "data": {"id": 307640131, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "project": {"id": 28674500, "name": "First project", "code": "FP"}, "task": {"id": 16575210, "name": "Business Development"}}, "emitted_at": 1671186224179} +{"stream": "task_assignments", "data": {"id": 307607014, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": null, "budget": null, "project": {"id": 28671451, "name": "Airbyte", "code": null}, "task": {"id": 16575209, "name": "Project Management"}}, "emitted_at": 1671186224179} +{"stream": "task_assignments", "data": {"id": 307607013, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": null, "budget": null, "project": {"id": 28671451, "name": "Airbyte", "code": null}, "task": {"id": 16575207, "name": "Programming"}}, "emitted_at": 1671186224179} +{"stream": "task_assignments", "data": {"id": 307607012, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": null, "budget": null, "project": {"id": 28671451, "name": "Airbyte", "code": null}, "task": {"id": 16575208, "name": "Marketing"}}, "emitted_at": 1671186224179} +{"stream": "task_assignments", "data": {"id": 307607011, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": null, "budget": null, "project": {"id": 28671451, "name": "Airbyte", "code": null}, "task": {"id": 16575206, "name": "Design"}}, "emitted_at": 1671186224180} +{"stream": "task_assignments", "data": {"id": 307607010, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": null, "budget": null, "project": {"id": 28671451, "name": "Airbyte", "code": null}, "task": {"id": 16575210, "name": "Business Development"}}, "emitted_at": 1671186224180} +{"stream": "projects", "data": {"id": 28674500, "name": "First project", "code": "FP", "is_active": true, "is_billable": true, "is_fixed_fee": false, "bill_by": "People", "budget": null, "budget_by": "none", "budget_is_monthly": false, "notify_when_over_budget": false, "over_budget_notification_percentage": 80.0, "show_budget_to_all": false, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "starts_on": null, "ends_on": null, "over_budget_notification_date": null, "notes": "Some notes", "cost_budget": null, "cost_budget_include_expenses": false, "hourly_rate": null, "fee": null, "client": {"id": 10749825, "name": "First client", "currency": "USD"}}, "emitted_at": 1671186224489} +{"stream": "projects", "data": {"id": 28671451, "name": "Airbyte", "code": null, "is_active": true, "is_billable": true, "is_fixed_fee": false, "bill_by": "none", "budget": null, "budget_by": "none", "budget_is_monthly": false, "notify_when_over_budget": false, "over_budget_notification_percentage": 80.0, "show_budget_to_all": false, "created_at": "2021-05-05T08:19:35Z", "updated_at": "2021-05-05T08:19:35Z", "starts_on": null, "ends_on": null, "over_budget_notification_date": null, "notes": null, "cost_budget": null, "cost_budget_include_expenses": false, "hourly_rate": null, "fee": null, "client": {"id": 10748673, "name": "Users", "currency": "USD"}}, "emitted_at": 1671186224489} +{"stream": "projects", "data": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE", "is_active": true, "is_billable": false, "is_fixed_fee": false, "bill_by": "none", "budget": 160.0, "budget_by": "project", "budget_is_monthly": false, "notify_when_over_budget": false, "over_budget_notification_percentage": 80.0, "show_budget_to_all": false, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "starts_on": null, "ends_on": null, "over_budget_notification_date": null, "notes": "Non-billable projects are perfect for tracking time you don\u2019t want to invoice for. You can use them to track internal projects, vacation/sick time, or pro bono work.", "cost_budget": null, "cost_budget_include_expenses": false, "hourly_rate": null, "fee": null, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}}, "emitted_at": 1671186224489} +{"stream": "projects", "data": {"id": 28671448, "name": "Monthly Retainer", "code": "SAMPLE", "is_active": true, "is_billable": true, "is_fixed_fee": false, "bill_by": "People", "budget": null, "budget_by": "project_cost", "budget_is_monthly": true, "notify_when_over_budget": false, "over_budget_notification_percentage": 80.0, "show_budget_to_all": false, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "starts_on": null, "ends_on": null, "over_budget_notification_date": null, "notes": "This project is set up so that its budget resets monthly. This is great for ongoing projects that charge a predetermined amount every month, like retainer agreements.", "cost_budget": 21910.0, "cost_budget_include_expenses": false, "hourly_rate": null, "fee": null, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}}, "emitted_at": 1671186224489} +{"stream": "projects", "data": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE", "is_active": true, "is_billable": true, "is_fixed_fee": false, "bill_by": "People", "budget": 150.0, "budget_by": "person", "budget_is_monthly": false, "notify_when_over_budget": false, "over_budget_notification_percentage": 80.0, "show_budget_to_all": false, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "starts_on": null, "ends_on": null, "over_budget_notification_date": null, "notes": "Time and Materials projects bill by the hour at a specific hourly rate. The more hours you work, the more you charge.", "cost_budget": null, "cost_budget_include_expenses": false, "hourly_rate": null, "fee": null, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}}, "emitted_at": 1671186224490} +{"stream": "projects", "data": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE", "is_active": true, "is_billable": true, "is_fixed_fee": true, "bill_by": "People", "budget": null, "budget_by": "project_cost", "budget_is_monthly": false, "notify_when_over_budget": false, "over_budget_notification_percentage": 80.0, "show_budget_to_all": false, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "starts_on": null, "ends_on": null, "over_budget_notification_date": null, "notes": "Fixed fee projects bill at a set price, no matter how many hours are worked. For instance, you and your client may agree that building a website will cost $5,000 regardless of how much time it takes for you and your team to complete it.", "cost_budget": 21900.0, "cost_budget_include_expenses": true, "hourly_rate": null, "fee": 21900.0, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}}, "emitted_at": 1671186224490} +{"stream": "roles", "data": {"id": 763939, "name": "Sample Role", "created_at": "2021-05-05T08:19:31Z", "updated_at": "2021-05-05T08:19:31Z", "user_ids": [3758381, 3758382, 3758383, 3758384]}, "emitted_at": 1671186224794} +{"stream": "users", "data": {"id": 3758384, "first_name": "[SAMPLE] Warrin", "last_name": "Wristwatch", "email": "warrin@harvestsample.com", "telephone": "", "timezone": "Kyiv", "weekly_capacity": 144000, "has_access_to_all_future_projects": false, "is_contractor": false, "is_active": true, "calendar_integration_enabled": false, "calendar_integration_source": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2022-04-21T09:59:47Z", "can_create_projects": false, "default_hourly_rate": 175.0, "cost_rate": 60.0, "roles": ["Sample Role"], "access_roles": ["member"], "permissions_claims": ["expenses:read:own", "expenses:write:own", "timers:read:own", "timers:write:own"], "avatar_url": "https://cache.harvestapp.com/assets/avatars/sample_avatar_4.png"}, "emitted_at": 1671186225156} +{"stream": "users", "data": {"id": 3758383, "first_name": "[SAMPLE] Tamara", "last_name": "Timekeeper", "email": "tamara@harvestsample.com", "telephone": "", "timezone": "Kyiv", "weekly_capacity": 144000, "has_access_to_all_future_projects": false, "is_contractor": false, "is_active": true, "calendar_integration_enabled": false, "calendar_integration_source": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2022-04-21T09:59:47Z", "can_create_projects": true, "default_hourly_rate": 175.0, "cost_rate": 60.0, "roles": ["Sample Role"], "access_roles": ["administrator"], "permissions_claims": ["billable_rates:read:all", "billable_rates:write:all", "billing:read:own", "billing:write:own", "clients:read:all", "clients:write:all", "company:read:own", "company:write:own", "cost_rates:read:all", "cost_rates:write:all", "estimates:read:all", "estimates:write:all", "expenses:read:all", "expenses:write:all", "invoices:read:all", "invoices:write:all", "projects:read:all", "projects:write:all", "tasks:read:all", "tasks:write:all", "timers:read:all", "timers:write:all", "users:read:all", "users:write:all"], "avatar_url": "https://cache.harvestapp.com/assets/avatars/sample_avatar_3.png"}, "emitted_at": 1671186225156} +{"stream": "users", "data": {"id": 3758382, "first_name": "[SAMPLE] Hiromi", "last_name": "Hourglass", "email": "hiromi@harvestsample.com", "telephone": "", "timezone": "Kyiv", "weekly_capacity": 144000, "has_access_to_all_future_projects": false, "is_contractor": false, "is_active": true, "calendar_integration_enabled": false, "calendar_integration_source": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2022-04-21T09:59:46Z", "can_create_projects": false, "default_hourly_rate": 125.0, "cost_rate": 40.0, "roles": ["Sample Role"], "access_roles": ["manager"], "permissions_claims": ["expenses:read:managed", "expenses:write:own", "projects:read:managed", "timers:read:managed", "timers:write:own"], "avatar_url": "https://cache.harvestapp.com/assets/avatars/sample_avatar_2.png"}, "emitted_at": 1671186225157} +{"stream": "users", "data": {"id": 3758381, "first_name": "[SAMPLE] Kiran", "last_name": "Kronological", "email": "kiran@harvestsample.com", "telephone": "", "timezone": "Kyiv", "weekly_capacity": 144000, "has_access_to_all_future_projects": false, "is_contractor": false, "is_active": true, "calendar_integration_enabled": false, "calendar_integration_source": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2022-04-21T09:59:46Z", "can_create_projects": false, "default_hourly_rate": 125.0, "cost_rate": 40.0, "roles": ["Sample Role"], "access_roles": ["manager"], "permissions_claims": ["expenses:read:managed", "expenses:write:own", "projects:read:managed", "timers:read:managed", "timers:write:own"], "avatar_url": "https://cache.harvestapp.com/assets/avatars/sample_avatar_1.png"}, "emitted_at": 1671186225157} +{"stream": "users", "data": {"id": 3758380, "first_name": "Airbyte", "last_name": "Developer", "email": "integration-test@airbyte.io", "telephone": "", "timezone": "Kyiv", "weekly_capacity": 144000, "has_access_to_all_future_projects": false, "is_contractor": false, "is_active": true, "calendar_integration_enabled": false, "calendar_integration_source": null, "created_at": "2021-05-05T08:17:57Z", "updated_at": "2022-04-21T09:59:47Z", "can_create_projects": true, "default_hourly_rate": null, "cost_rate": null, "roles": [], "access_roles": ["administrator"], "permissions_claims": ["billable_rates:read:all", "billable_rates:write:all", "billing:read:own", "billing:write:own", "clients:read:all", "clients:write:all", "company:read:own", "company:write:own", "cost_rates:read:all", "cost_rates:write:all", "estimates:read:all", "estimates:write:all", "expenses:read:all", "expenses:write:all", "invoices:read:all", "invoices:write:all", "projects:read:all", "projects:write:all", "tasks:read:all", "tasks:write:all", "timers:read:all", "timers:write:all", "users:read:all", "users:write:all"], "avatar_url": "https://d3s3969qhosaug.cloudfront.net/v2/default-avatars/4144.png"}, "emitted_at": 1671186225157} +{"stream": "billable_rates", "data": {"id": 2164495, "amount": 175.0, "start_date": null, "end_date": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "parent_id": 3758384}, "emitted_at": 1671186225771} +{"stream": "billable_rates", "data": {"id": 2164494, "amount": 175.0, "start_date": null, "end_date": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2021-05-05T08:19:31Z", "parent_id": 3758383}, "emitted_at": 1671186226014} +{"stream": "billable_rates", "data": {"id": 2164493, "amount": 125.0, "start_date": null, "end_date": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2021-05-05T08:19:31Z", "parent_id": 3758382}, "emitted_at": 1671186226201} +{"stream": "billable_rates", "data": {"id": 2164492, "amount": 125.0, "start_date": null, "end_date": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2021-05-05T08:19:31Z", "parent_id": 3758381}, "emitted_at": 1671186226420} +{"stream": "cost_rates", "data": {"id": 1181742, "amount": 60.0, "start_date": null, "end_date": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "parent_id": 3758384}, "emitted_at": 1671186227355} +{"stream": "cost_rates", "data": {"id": 1181741, "amount": 60.0, "start_date": null, "end_date": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2021-05-05T08:19:31Z", "parent_id": 3758383}, "emitted_at": 1671186227546} +{"stream": "cost_rates", "data": {"id": 1181740, "amount": 40.0, "start_date": null, "end_date": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2021-05-05T08:19:31Z", "parent_id": 3758382}, "emitted_at": 1671186227729} +{"stream": "cost_rates", "data": {"id": 1181739, "amount": 40.0, "start_date": null, "end_date": null, "created_at": "2021-05-05T08:19:31Z", "updated_at": "2021-05-05T08:19:31Z", "parent_id": 3758381}, "emitted_at": 1671186227912} +{"stream": "project_assignments", "data": {"id": 286326482, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 175.0, "project": {"id": 28671449, "name": "Non-Billable Project", "code": "SAMPLE", "is_billable": false}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "task_assignments": [{"id": 307606998, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575210, "name": "Business Development"}}, {"id": 307606999, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575206, "name": "Design"}}, {"id": 307607000, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575208, "name": "Marketing"}}, {"id": 307607001, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575207, "name": "Programming"}}, {"id": 307607002, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575209, "name": "Project Management"}}], "parent_id": 3758384}, "emitted_at": 1671186228789} +{"stream": "project_assignments", "data": {"id": 286326477, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:33Z", "updated_at": "2021-05-05T08:19:33Z", "hourly_rate": 175.0, "project": {"id": 28671448, "name": "Monthly Retainer", "code": "SAMPLE", "is_billable": true}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "task_assignments": [{"id": 307606993, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575210, "name": "Business Development"}}, {"id": 307606994, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575206, "name": "Design"}}, {"id": 307606995, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575208, "name": "Marketing"}}, {"id": 307606996, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575207, "name": "Programming"}}, {"id": 307606997, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575209, "name": "Project Management"}}], "parent_id": 3758384}, "emitted_at": 1671186228790} +{"stream": "project_assignments", "data": {"id": 286326471, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": 33.0, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:35Z", "hourly_rate": 175.0, "project": {"id": 28671447, "name": "Time & Materials Project", "code": "SAMPLE", "is_billable": true}, "client": {"id": 10748671, "name": "[SAMPLE] Client B", "currency": "USD"}, "task_assignments": [{"id": 307606988, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575210, "name": "Business Development"}}, {"id": 307606989, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575206, "name": "Design"}}, {"id": 307606990, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575208, "name": "Marketing"}}, {"id": 307606991, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575207, "name": "Programming"}}, {"id": 307606992, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575209, "name": "Project Management"}}], "parent_id": 3758384}, "emitted_at": 1671186228791} +{"stream": "project_assignments", "data": {"id": 286326466, "is_project_manager": false, "is_active": true, "use_default_rates": true, "budget": null, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": 175.0, "project": {"id": 28671446, "name": "Fixed Fee Project", "code": "SAMPLE", "is_billable": true}, "client": {"id": 10748670, "name": "[SAMPLE] Client A", "currency": "USD"}, "task_assignments": [{"id": 307606983, "billable": false, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575210, "name": "Business Development"}}, {"id": 307606984, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575206, "name": "Design"}}, {"id": 307606985, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575208, "name": "Marketing"}}, {"id": 307606986, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575207, "name": "Programming"}}, {"id": 307606987, "billable": true, "is_active": true, "created_at": "2021-05-05T08:19:32Z", "updated_at": "2021-05-05T08:19:32Z", "hourly_rate": null, "budget": null, "task": {"id": 16575209, "name": "Project Management"}}], "parent_id": 3758384}, "emitted_at": 1671186228791} +{"stream": "project_assignments", "data": {"id": 286365663, "is_project_manager": true, "is_active": true, "use_default_rates": false, "budget": null, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": 10.0, "project": {"id": 28674500, "name": "First project", "code": "FP", "is_billable": true}, "client": {"id": 10749825, "name": "First client", "currency": "USD"}, "task_assignments": [{"id": 307640131, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "task": {"id": 16575210, "name": "Business Development"}}, {"id": 307640132, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "task": {"id": 16575206, "name": "Design"}}, {"id": 307640133, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "task": {"id": 16575208, "name": "Marketing"}}, {"id": 307640134, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "task": {"id": 16575207, "name": "Programming"}}, {"id": 307640135, "billable": true, "is_active": true, "created_at": "2021-05-05T12:52:20Z", "updated_at": "2021-05-05T12:52:20Z", "hourly_rate": null, "budget": null, "task": {"id": 16575209, "name": "Project Management"}}], "parent_id": 3758380}, "emitted_at": 1671186229609} +{"stream": "expenses_clients", "data": {"client_id": 10748670, "client_name": "[SAMPLE] Client A", "total_amount": 481.0, "billable_amount": 307.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186229932} +{"stream": "expenses_clients", "data": {"client_id": 10748671, "client_name": "[SAMPLE] Client B", "total_amount": 461.0, "billable_amount": 261.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186229932} +{"stream": "expenses_projects", "data": {"client_id": 10748670, "client_name": "[SAMPLE] Client A", "project_id": 28671446, "project_name": "[SAMPLE] Fixed Fee Project", "total_amount": 339.0, "billable_amount": 165.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186230430} +{"stream": "expenses_projects", "data": {"client_id": 10748671, "client_name": "[SAMPLE] Client B", "project_id": 28671448, "project_name": "[SAMPLE] Monthly Retainer", "total_amount": 238.0, "billable_amount": 238.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186230430} +{"stream": "expenses_projects", "data": {"client_id": 10748670, "client_name": "[SAMPLE] Client A", "project_id": 28671449, "project_name": "[SAMPLE] Non-Billable Project", "total_amount": 142.0, "billable_amount": 142.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186230430} +{"stream": "expenses_projects", "data": {"client_id": 10748671, "client_name": "[SAMPLE] Client B", "project_id": 28671447, "project_name": "[SAMPLE] Time & Materials Project", "total_amount": 223.0, "billable_amount": 23.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186230430} +{"stream": "expenses_categories", "data": {"expense_category_id": 7892981, "expense_category_name": "Entertainment", "total_amount": 58.0, "billable_amount": 58.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186230920} +{"stream": "expenses_categories", "data": {"expense_category_id": 7892983, "expense_category_name": "Lodging", "total_amount": 200.0, "billable_amount": 0.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186230920} +{"stream": "expenses_categories", "data": {"expense_category_id": 7892982, "expense_category_name": "Meals", "total_amount": 261.0, "billable_amount": 261.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186230920} +{"stream": "expenses_categories", "data": {"expense_category_id": 7892984, "expense_category_name": "Transportation", "total_amount": 423.0, "billable_amount": 249.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186230920} +{"stream": "expenses_team", "data": {"user_id": 3758382, "user_name": "[SAMPLE] Hiromi Hourglass", "is_contractor": false, "total_amount": 109.0, "billable_amount": 109.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231455} +{"stream": "expenses_team", "data": {"user_id": 3758381, "user_name": "[SAMPLE] Kiran Kronological", "is_contractor": false, "total_amount": 372.0, "billable_amount": 172.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231455} +{"stream": "expenses_team", "data": {"user_id": 3758383, "user_name": "[SAMPLE] Tamara Timekeeper", "is_contractor": false, "total_amount": 23.0, "billable_amount": 23.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231455} +{"stream": "expenses_team", "data": {"user_id": 3758384, "user_name": "[SAMPLE] Warrin Wristwatch", "is_contractor": false, "total_amount": 438.0, "billable_amount": 264.0, "currency": "USD", "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231455} +{"stream": "uninvoiced", "data": {"client_id": 10748670, "client_name": "[SAMPLE] Client A", "project_id": 28671446, "project_name": "Fixed Fee Project", "currency": "USD", "total_hours": 165.98, "uninvoiced_hours": 130.1, "uninvoiced_expenses": 165.0, "uninvoiced_amount": -100.0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231971} +{"stream": "uninvoiced", "data": {"client_id": 10748671, "client_name": "[SAMPLE] Client B", "project_id": 28671448, "project_name": "Monthly Retainer", "currency": "USD", "total_hours": 160.41, "uninvoiced_hours": 142.99, "uninvoiced_expenses": 238.0, "uninvoiced_amount": 20700.25, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231971} +{"stream": "uninvoiced", "data": {"client_id": 10748671, "client_name": "[SAMPLE] Client B", "project_id": 28671447, "project_name": "Time & Materials Project", "currency": "USD", "total_hours": 166.21, "uninvoiced_hours": 142.7, "uninvoiced_expenses": 23.0, "uninvoiced_amount": 20454.0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231971} +{"stream": "uninvoiced", "data": {"client_id": 10749825, "client_name": "First client", "project_id": 28674500, "project_name": "First project", "currency": "USD", "total_hours": 8.01, "uninvoiced_hours": 0, "uninvoiced_expenses": 0, "uninvoiced_amount": 0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231972} +{"stream": "uninvoiced", "data": {"client_id": 10748673, "client_name": "Users", "project_id": 28671451, "project_name": "Airbyte", "currency": "USD", "total_hours": 0, "uninvoiced_hours": 0, "uninvoiced_expenses": 0, "uninvoiced_amount": 0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186231972} +{"stream": "uninvoiced", "data": {"client_id": 10748670, "client_name": "[SAMPLE] Client A", "project_id": 28671446, "project_name": "Fixed Fee Project", "currency": "USD", "total_hours": 0, "uninvoiced_hours": 0, "uninvoiced_expenses": 0, "uninvoiced_amount": -100.0, "from": "20220101", "to": "20221216"}, "emitted_at": 1671186232186} +{"stream": "uninvoiced", "data": {"client_id": 10748671, "client_name": "[SAMPLE] Client B", "project_id": 28671448, "project_name": "Monthly Retainer", "currency": "USD", "total_hours": 0, "uninvoiced_hours": 0, "uninvoiced_expenses": 0, "uninvoiced_amount": 0, "from": "20220101", "to": "20221216"}, "emitted_at": 1671186232187} +{"stream": "uninvoiced", "data": {"client_id": 10748671, "client_name": "[SAMPLE] Client B", "project_id": 28671447, "project_name": "Time & Materials Project", "currency": "USD", "total_hours": 0, "uninvoiced_hours": 0, "uninvoiced_expenses": 0, "uninvoiced_amount": 0, "from": "20220101", "to": "20221216"}, "emitted_at": 1671186232187} +{"stream": "uninvoiced", "data": {"client_id": 10749825, "client_name": "First client", "project_id": 28674500, "project_name": "First project", "currency": "USD", "total_hours": 0, "uninvoiced_hours": 0, "uninvoiced_expenses": 0, "uninvoiced_amount": 0, "from": "20220101", "to": "20221216"}, "emitted_at": 1671186232187} +{"stream": "uninvoiced", "data": {"client_id": 10748673, "client_name": "Users", "project_id": 28671451, "project_name": "Airbyte", "currency": "USD", "total_hours": 0, "uninvoiced_hours": 0, "uninvoiced_expenses": 0, "uninvoiced_amount": 0, "from": "20220101", "to": "20221216"}, "emitted_at": 1671186232188} +{"stream": "time_clients", "data": {"client_id": 10748670, "client_name": "[SAMPLE] Client A", "total_hours": 306.95, "billable_hours": 130.1, "currency": "USD", "billable_amount": 0.0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186232499} +{"stream": "time_clients", "data": {"client_id": 10748671, "client_name": "[SAMPLE] Client B", "total_hours": 326.62, "billable_hours": 285.69, "currency": "USD", "billable_amount": 40893.25, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186232500} +{"stream": "time_clients", "data": {"client_id": 10749825, "client_name": "First client", "total_hours": 8.01, "billable_hours": 8.01, "currency": "USD", "billable_amount": 80.1, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186232500} +{"stream": "time_projects", "data": {"project_id": 28674500, "project_name": "[FP] First project", "client_id": 10749825, "client_name": "First client", "total_hours": 8.01, "billable_hours": 8.01, "currency": "USD", "billable_amount": 80.1, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186232995} +{"stream": "time_projects", "data": {"project_id": 28671446, "project_name": "[SAMPLE] Fixed Fee Project", "client_id": 10748670, "client_name": "[SAMPLE] Client A", "total_hours": 165.98, "billable_hours": 130.1, "currency": "USD", "billable_amount": 0.0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186232995} +{"stream": "time_projects", "data": {"project_id": 28671448, "project_name": "[SAMPLE] Monthly Retainer", "client_id": 10748671, "client_name": "[SAMPLE] Client B", "total_hours": 160.41, "billable_hours": 142.99, "currency": "USD", "billable_amount": 20462.25, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186232995} +{"stream": "time_projects", "data": {"project_id": 28671449, "project_name": "[SAMPLE] Non-Billable Project", "client_id": 10748670, "client_name": "[SAMPLE] Client A", "total_hours": 140.97, "billable_hours": 0.0, "currency": "USD", "billable_amount": 0.0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186232995} +{"stream": "time_projects", "data": {"project_id": 28671447, "project_name": "[SAMPLE] Time & Materials Project", "client_id": 10748671, "client_name": "[SAMPLE] Client B", "total_hours": 166.21, "billable_hours": 142.7, "currency": "USD", "billable_amount": 20431.0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186232995} +{"stream": "time_tasks", "data": {"task_id": 16575210, "task_name": "Business Development", "total_hours": 112.6, "billable_hours": 0.0, "currency": "USD", "billable_amount": 0.0, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186233507} +{"stream": "time_tasks", "data": {"task_id": 16575206, "task_name": "Design", "total_hours": 48.13, "billable_hours": 46.16, "currency": "USD", "billable_amount": 3596.35, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186233507} +{"stream": "time_tasks", "data": {"task_id": 16575208, "task_name": "Marketing", "total_hours": 234.46, "billable_hours": 187.2, "currency": "USD", "billable_amount": 19424.75, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186233507} +{"stream": "time_tasks", "data": {"task_id": 16575207, "task_name": "Programming", "total_hours": 62.72, "billable_hours": 51.37, "currency": "USD", "billable_amount": 3913.75, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186233508} +{"stream": "time_tasks", "data": {"task_id": 16575209, "task_name": "Project Management", "total_hours": 183.67, "billable_hours": 139.07, "currency": "USD", "billable_amount": 14038.5, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186233508} +{"stream": "time_team", "data": {"user_id": 3758382, "user_name": "[SAMPLE] Hiromi Hourglass", "is_contractor": false, "total_hours": 162.23, "billable_hours": 129.77, "currency": "USD", "billable_amount": 11227.5, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186234505} +{"stream": "time_team", "data": {"user_id": 3758381, "user_name": "[SAMPLE] Kiran Kronological", "is_contractor": false, "total_hours": 156.68, "billable_hours": 131.12, "currency": "USD", "billable_amount": 11528.75, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186234506} +{"stream": "time_team", "data": {"user_id": 3758383, "user_name": "[SAMPLE] Tamara Timekeeper", "is_contractor": false, "total_hours": 154.59, "billable_hours": 76.22, "currency": "USD", "billable_amount": 9329.25, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186234507} +{"stream": "time_team", "data": {"user_id": 3758384, "user_name": "[SAMPLE] Warrin Wristwatch", "is_contractor": false, "total_hours": 160.07, "billable_hours": 78.68, "currency": "USD", "billable_amount": 8807.75, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186234508} +{"stream": "time_team", "data": {"user_id": 3758380, "user_name": "Airbyte Developer", "is_contractor": false, "total_hours": 8.01, "billable_hours": 8.01, "currency": "USD", "billable_amount": 80.1, "from": "20210101", "to": "20220101"}, "emitted_at": 1671186234508} +{"stream": "project_budget", "data": {"project_id": 28671446, "project_name": "Fixed Fee Project", "client_id": 10748670, "client_name": "[SAMPLE] Client A", "budget_is_monthly": false, "budget_by": "project_cost", "is_active": true, "budget": 21900.0, "budget_spent": 19164.5, "budget_remaining": 2735.5}, "emitted_at": 1671186235043} +{"stream": "project_budget", "data": {"project_id": 28671449, "project_name": "Non-Billable Project", "client_id": 10748670, "client_name": "[SAMPLE] Client A", "budget_is_monthly": false, "budget_by": "project", "is_active": true, "budget": 160.0, "budget_spent": 140.97, "budget_remaining": 19.03}, "emitted_at": 1671186235043} +{"stream": "project_budget", "data": {"project_id": 28671448, "project_name": "Monthly Retainer", "client_id": 10748671, "client_name": "[SAMPLE] Client B", "budget_is_monthly": true, "budget_by": "project_cost", "is_active": true, "budget": 21910.0, "budget_spent": 0.0, "budget_remaining": 21910.0}, "emitted_at": 1671186235044} +{"stream": "project_budget", "data": {"project_id": 28671447, "project_name": "Time & Materials Project", "client_id": 10748671, "client_name": "[SAMPLE] Client B", "budget_is_monthly": false, "budget_by": "person", "is_active": true, "budget": 150.0, "budget_spent": 166.21, "budget_remaining": -16.21}, "emitted_at": 1671186235044} diff --git a/airbyte-integrations/connectors/source-harvest/integration_tests/incremental_catalog.json b/airbyte-integrations/connectors/source-harvest/integration_tests/incremental_catalog.json new file mode 100644 index 000000000000..088860b5a25e --- /dev/null +++ b/airbyte-integrations/connectors/source-harvest/integration_tests/incremental_catalog.json @@ -0,0 +1,337 @@ +{ + "streams": [ + { + "stream": { + "name": "clients", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "contacts", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "invoices", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "invoice_messages", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "invoice_payments", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "invoice_item_categories", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "estimates", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "estimate_messages", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "estimate_item_categories", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "expenses", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "expense_categories", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "tasks", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "time_entries", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "user_assignments", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "task_assignments", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "projects", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "roles", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "users", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "project_assignments", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "expenses_clients", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["to"] + }, + "sync_mode": "incremental", + "cursor_field": ["to"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "expenses_projects", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["to"] + }, + "sync_mode": "incremental", + "cursor_field": ["to"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "expenses_categories", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["to"] + }, + "sync_mode": "incremental", + "cursor_field": ["to"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "expenses_team", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["to"] + }, + "sync_mode": "incremental", + "cursor_field": ["to"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "uninvoiced", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "time_clients", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["to"] + }, + "sync_mode": "incremental", + "cursor_field": ["to"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "time_projects", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["to"] + }, + "sync_mode": "incremental", + "cursor_field": ["to"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "time_tasks", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["to"] + }, + "sync_mode": "incremental", + "cursor_field": ["to"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "time_team", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["to"] + }, + "sync_mode": "incremental", + "cursor_field": ["to"], + "destination_sync_mode": "append" + } + ] +} diff --git a/airbyte-integrations/connectors/source-harvest/source_harvest/source.py b/airbyte-integrations/connectors/source-harvest/source_harvest/source.py index 93dab5b9e291..52c75a8df4c9 100644 --- a/airbyte-integrations/connectors/source-harvest/source_harvest/source.py +++ b/airbyte-integrations/connectors/source-harvest/source_harvest/source.py @@ -85,6 +85,10 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: auth = self.get_authenticator(config) replication_start_date = pendulum.parse(config["replication_start_date"]) from_date = replication_start_date.date() + replication_end_date = config.get("replication_end_date") + replication_end_date = replication_end_date and pendulum.parse(replication_end_date) + to_date = replication_end_date and replication_end_date.date() + date_range = {"from_date": from_date, "to_date": to_date} streams = [ Clients(authenticator=auth, replication_start_date=replication_start_date), @@ -109,16 +113,16 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: BillableRates(authenticator=auth), CostRates(authenticator=auth), ProjectAssignments(authenticator=auth, replication_start_date=replication_start_date), - ExpensesClients(authenticator=auth, from_date=from_date), - ExpensesProjects(authenticator=auth, from_date=from_date), - ExpensesCategories(authenticator=auth, from_date=from_date), - ExpensesTeam(authenticator=auth, from_date=from_date), - Uninvoiced(authenticator=auth, from_date=from_date), - TimeClients(authenticator=auth, from_date=from_date), - TimeProjects(authenticator=auth, from_date=from_date), - TimeTasks(authenticator=auth, from_date=from_date), - TimeTeam(authenticator=auth, from_date=from_date), - ProjectBudget(authenticator=auth, from_date=from_date), + ExpensesClients(authenticator=auth, **date_range), + ExpensesProjects(authenticator=auth, **date_range), + ExpensesCategories(authenticator=auth, **date_range), + ExpensesTeam(authenticator=auth, **date_range), + Uninvoiced(authenticator=auth, **date_range), + TimeClients(authenticator=auth, **date_range), + TimeProjects(authenticator=auth, **date_range), + TimeTasks(authenticator=auth, **date_range), + TimeTeam(authenticator=auth, **date_range), + ProjectBudget(authenticator=auth, **date_range), ] return streams diff --git a/airbyte-integrations/connectors/source-harvest/source_harvest/spec.json b/airbyte-integrations/connectors/source-harvest/source_harvest/spec.json index 4e06112b33d1..9f87dd4f8763 100644 --- a/airbyte-integrations/connectors/source-harvest/source_harvest/spec.json +++ b/airbyte-integrations/connectors/source-harvest/source_harvest/spec.json @@ -22,11 +22,20 @@ "type": "string", "order": 1 }, + "replication_end_date": { + "title": "End Date", + "description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data after this date will not be replicated.", + "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$", + "examples": ["2017-01-25T00:00:00Z"], + "type": "string", + "airbyte_hidden": true, + "order": 2 + }, "credentials": { "title": "Authentication mechanism", "description": "Choose how to authenticate to Harvest.", "type": "object", - "order": 2, + "order": 3, "oneOf": [ { "type": "object", diff --git a/airbyte-integrations/connectors/source-harvest/source_harvest/streams.py b/airbyte-integrations/connectors/source-harvest/source_harvest/streams.py index 390bba2f0663..00f3d29c99c4 100644 --- a/airbyte-integrations/connectors/source-harvest/source_harvest/streams.py +++ b/airbyte-integrations/connectors/source-harvest/source_harvest/streams.py @@ -295,16 +295,15 @@ def report_path(self): :return: report path suffix """ - def __init__(self, from_date: pendulum.date = None, **kwargs): + def __init__(self, from_date: Optional[pendulum.date] = None, to_date: Optional[pendulum.date] = None, **kwargs): super().__init__(**kwargs) current_date = pendulum.now().date() self._from_date = from_date or current_date.subtract(years=1) + self._to_date = to_date or current_date # `to` date greater than `from` date causes an exception on Harvest if self._from_date > current_date: self._to_date = from_date - else: - self._to_date = current_date def path(self, **kwargs) -> str: return f"reports/{self.report_path}" @@ -347,7 +346,7 @@ def stream_slices(self, sync_mode, stream_state: Mapping[str, Any] = None, **kwa Override default stream_slices CDK method to provide date_slices as page chunks for data fetch. """ start_date = self._from_date - end_date = pendulum.now().date() + end_date = self._to_date # determine stream_state, if no stream_state we use start_date if stream_state: diff --git a/airbyte-integrations/connectors/source-jdbc/src/main/java/io/airbyte/integrations/source/jdbc/AbstractJdbcSource.java b/airbyte-integrations/connectors/source-jdbc/src/main/java/io/airbyte/integrations/source/jdbc/AbstractJdbcSource.java index 76876a9d221a..2e4d9d1f9ae1 100644 --- a/airbyte-integrations/connectors/source-jdbc/src/main/java/io/airbyte/integrations/source/jdbc/AbstractJdbcSource.java +++ b/airbyte-integrations/connectors/source-jdbc/src/main/java/io/airbyte/integrations/source/jdbc/AbstractJdbcSource.java @@ -46,11 +46,11 @@ import io.airbyte.integrations.source.relationaldb.CursorInfo; import io.airbyte.integrations.source.relationaldb.TableInfo; import io.airbyte.integrations.source.relationaldb.state.StateManager; -import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import io.airbyte.protocol.models.CommonField; +import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.JsonSchemaType; import java.net.MalformedURLException; import java.net.URI; import java.sql.Connection; @@ -621,4 +621,5 @@ protected List identifyStreamsToSnapshot(final Configur .map(Jsons::clone) .collect(Collectors.toList()); } + } diff --git a/airbyte-integrations/connectors/source-jdbc/src/test-integration/java/io/airbyte/integrations/source/jdbc/JdbcSourceSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-jdbc/src/test-integration/java/io/airbyte/integrations/source/jdbc/JdbcSourceSourceAcceptanceTest.java index 2339db6eb41d..c766608887c4 100644 --- a/airbyte-integrations/connectors/source-jdbc/src/test-integration/java/io/airbyte/integrations/source/jdbc/JdbcSourceSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-jdbc/src/test-integration/java/io/airbyte/integrations/source/jdbc/JdbcSourceSourceAcceptanceTest.java @@ -14,11 +14,11 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.sql.SQLException; import java.util.HashMap; import org.jooq.DSLContext; diff --git a/airbyte-integrations/connectors/source-jdbc/src/testFixtures/java/io/airbyte/integrations/source/jdbc/test/JdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-jdbc/src/testFixtures/java/io/airbyte/integrations/source/jdbc/test/JdbcSourceAcceptanceTest.java index 683626538e65..36b0b7cdccc2 100644 --- a/airbyte-integrations/connectors/source-jdbc/src/testFixtures/java/io/airbyte/integrations/source/jdbc/test/JdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-jdbc/src/testFixtures/java/io/airbyte/integrations/source/jdbc/test/JdbcSourceAcceptanceTest.java @@ -30,6 +30,8 @@ import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; @@ -45,8 +47,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.StreamDescriptor; import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; diff --git a/airbyte-integrations/connectors/source-jdbc/src/testFixtures/java/io/airbyte/integrations/source/jdbc/test/JdbcStressTest.java b/airbyte-integrations/connectors/source-jdbc/src/testFixtures/java/io/airbyte/integrations/source/jdbc/test/JdbcStressTest.java index d5ccf1968205..a616967dc446 100644 --- a/airbyte-integrations/connectors/source-jdbc/src/testFixtures/java/io/airbyte/integrations/source/jdbc/test/JdbcStressTest.java +++ b/airbyte-integrations/connectors/source-jdbc/src/testFixtures/java/io/airbyte/integrations/source/jdbc/test/JdbcStressTest.java @@ -18,6 +18,8 @@ import io.airbyte.db.jdbc.JdbcDatabase; import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteMessage.Type; @@ -26,8 +28,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.nio.ByteBuffer; diff --git a/airbyte-integrations/connectors/source-jira/Dockerfile b/airbyte-integrations/connectors/source-jira/Dockerfile index f30726f603a7..b74fa3edf0c4 100644 --- a/airbyte-integrations/connectors/source-jira/Dockerfile +++ b/airbyte-integrations/connectors/source-jira/Dockerfile @@ -12,5 +12,5 @@ RUN pip install . ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.3.0 +LABEL io.airbyte.version=0.3.1 LABEL io.airbyte.name=airbyte/source-jira diff --git a/airbyte-integrations/connectors/source-jira/acceptance-test-config.yml b/airbyte-integrations/connectors/source-jira/acceptance-test-config.yml index 06261ed152ef..789ec275c41a 100644 --- a/airbyte-integrations/connectors/source-jira/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-jira/acceptance-test-config.yml @@ -1,44 +1,45 @@ # See [Source Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/source-acceptance-tests-reference) # for more information about how to configure these tests connector_image: airbyte/source-jira:dev -tests: +acceptance_tests: spec: - - spec_path: "source_jira/spec.json" - backward_compatibility_tests_config: - disable_for_version: "0.2.23" + tests: + - spec_path: "source_jira/spec.json" + backward_compatibility_tests_config: + disable_for_version: "0.2.23" connection: - - config_path: "secrets/config.json" - status: "succeed" - - config_path: "integration_tests/invalid_config.json" - status: "failed" + tests: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" discovery: - - config_path: "secrets/config.json" - backward_compatibility_tests_config: - disable_for_version: "0.2.23" + tests: + - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.2.23" + backward_compatibility_tests_config: + disable_for_version: "0.3.0" basic_read: - # TEST for the Labels stream - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/labels_catalog.json" - expect_records: - path: "integration_tests/expected_label_records.txt" - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/issues_configured_catalog.json" - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/issue_worklogs_configured_catalog.json" - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/projects_configured_catalog.json" - empty_streams: ["project_permission_schemes"] - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/workflows_configured_catalog.json" - - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: ["epics", "screen_tab_fields", "sprint_issues", "sprints"] - timeout_seconds: 1800 -# incremental: -# - config_path: "secrets/config.json" -# configured_catalog_path: "integration_tests/inc_configured_catalog.json" -# future_state_path: "integration_tests/abnormal_state.json" -# Jira Source has a lot streams. It takes to long to sync them, which caused timeout error -# full_refresh: -# - config_path: "secrets/config.json" -# configured_catalog_path: "integration_tests/full_configured_catalog.json" + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + expect_records: + path: "integration_tests/expected_records.txt" + extra_fields: no + exact_order: no + extra_records: yes + empty_streams: + - name: "issue_properties" + - name: "project_permission_schemes" + - name: "screen_tab_fields" + incremental: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + future_state: + future_state_path: "integration_tests/abnormal_state.json" + full_refresh: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-jira/integration_tests/abnormal_state.json index abed3d6bbca5..af6f2b9ee050 100644 --- a/airbyte-integrations/connectors/source-jira/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-jira/integration_tests/abnormal_state.json @@ -1,8 +1,57 @@ -{ - "issues": { - "created": "2121-02-14T22:01:22.313Z" +[ + { + "type": "STREAM", + "stream": { + "stream_descriptor": { + "name": "board_issues" + }, + "stream_state": { + "updated": "2122-01-01T00:00:00Z" + } + } }, - "issue_worklogs": { - "started": "2121-04-14T11:30:22.313Z" + { + "type": "STREAM", + "stream": { + "stream_descriptor": { + "name": "issues" + }, + "stream_state": { + "updated": "2122-01-01T00:00:00Z" + } + } + }, + { + "type": "STREAM", + "stream": { + "stream_descriptor": { + "name": "issue_comments" + }, + "stream_state": { + "updated": "2122-01-01T00:00:00Z" + } + } + }, + { + "type": "STREAM", + "stream": { + "stream_descriptor": { + "name": "issue_worklogs" + }, + "stream_state": { + "updated": "2122-01-01T00:00:00Z" + } + } + }, + { + "type": "STREAM", + "stream": { + "stream_descriptor": { + "name": "sprint_issues" + }, + "stream_state": { + "updated": "2122-01-01T00:00:00Z" + } + } } -} +] diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/configured_catalog.json index 1d4c9335f8e5..2c71bed4f0a5 100644 --- a/airbyte-integrations/connectors/source-jira/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-jira/integration_tests/configured_catalog.json @@ -4,210 +4,634 @@ "stream": { "name": "application_roles", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["key"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "avatars", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "boards", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "board_issues", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh", + "incremental" + ], + "source_defined_cursor": true, + "default_cursor_field": [ + "updated" + ], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "sync_mode": "incremental", + "destination_sync_mode": "append" }, { "stream": { "name": "dashboards", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { - "name": "epics", + "name": "filters", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { - "name": "filters", + "name": "filter_sharing", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { - "name": "filter_sharing", + "name": "groups", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["groupId"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { - "name": "groups", + "name": "issues", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh", + "incremental" + ], + "source_defined_cursor": true, + "default_cursor_field": [ + "updated" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_comments", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh", + "incremental" + ], + "source_defined_cursor": true, + "default_cursor_field": [ + "updated" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_fields", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_field_configurations", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_custom_field_contexts", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_link_types", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_navigator_settings", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_notification_schemes", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_priorities", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_properties", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["key"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_remote_links", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_resolutions", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_security_schemes", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_type_schemes", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_type_screen_schemes", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_votes", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_watchers", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "issue_worklogs", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh", + "incremental" + ], + "source_defined_cursor": true, + "default_cursor_field": [ + "updated" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append" }, { "stream": { "name": "jira_settings", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "labels", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["label"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "permissions", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["key"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "permission_schemes", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "projects", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "project_avatars", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "project_categories", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "project_components", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "project_email", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["projectId"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "project_permission_schemes", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "project_types", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "project_versions", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" }, { "stream": { "name": "screens", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "screen_tabs", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "screen_tab_fields", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "screen_schemes", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "sprints", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "sprint_issues", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh", + "incremental" + ], + "source_defined_cursor": true, + "default_cursor_field": [ + "updated" + ], + "source_defined_primary_key": [["id"]] }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "sync_mode": "incremental", + "destination_sync_mode": "append" }, { "stream": { "name": "time_tracking", "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["key"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" }, { "stream": { "name": "users", "json_schema": {}, - "supported_sync_modes": ["full_refresh"] + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["accountId"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "users_groups_detailed", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["accountId"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "workflows", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "workflow_schemes", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "workflow_statuses", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "workflow_status_categories", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ], + "source_defined_primary_key": [["id"]] }, "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" + "destination_sync_mode": "append" } ] } diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/expected_label_records.txt b/airbyte-integrations/connectors/source-jira/integration_tests/expected_label_records.txt deleted file mode 100644 index 5fcd2b7734be..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/expected_label_records.txt +++ /dev/null @@ -1,12 +0,0 @@ -{"stream": "labels", "data": {"id": "jira.issuenav.criteria.autoupdate", "key": "jira.issuenav.criteria.autoupdate", "value": "true", "name": "Auto Update Criteria", "desc": "Turn on to update search results automatically", "type": "boolean"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.clone.prefix", "key": "jira.clone.prefix", "value": "CLONE -", "name": "The prefix added to the Summary field of cloned issues", "type": "string"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.date.picker.java.format", "key": "jira.date.picker.java.format", "value": "d/MMM/yy", "name": "Date Picker Format (Java)", "desc": "This part is only for the Java (server side) generated dates. Note that this should correspond to the javascript date picker format (jira.date.picker.javascript.format) setting.", "type": "string"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.date.picker.javascript.format", "key": "jira.date.picker.javascript.format", "value": "%e/%b/%y", "name": "Date Picker Format (JavaScript)", "desc": "This part is only for the JavaScript (client side) generated dates. Note that this should correspond to the java date picker format (jira.date.picker.java.format) setting.", "type": "string"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.date.time.picker.java.format", "key": "jira.date.time.picker.java.format", "value": "dd/MMM/yy h:mm a", "name": "DateTime Picker Format (Java)", "desc": "This part is only for the Java (server side) generated datetimes. Note that this should correspond to the javascript datetime picker format (jira.date.time.picker.javascript.format) setting.", "type": "string"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.date.time.picker.javascript.format", "key": "jira.date.time.picker.javascript.format", "value": "%e/%b/%y %I:%M %p", "name": "DateTime Picker Format (JavaScript)", "desc": "This part is only for the JavaScript (client side) generated date times. Note that this should correspond to the java datetime picker format (jira.date.time.picker.java.format) setting.", "type": "string"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.issue.actions.order", "key": "jira.issue.actions.order", "value": "asc", "name": "JIRA issue actions order", "desc": "The default order of actions (tab items like 'Comments', 'Change History' etc) on the 'View Issue' screen, by date, from top to bottom.", "type": "enum", "allowedValues": ["asc", "desc"]}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.lf.date.time", "key": "jira.lf.date.time", "value": "h:mm a", "name": "Time Format", "type": "string", "example": "3:55 AM"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.lf.date.day", "key": "jira.lf.date.day", "value": "EEEE h:mm a", "name": "Day Format", "type": "string", "example": "Wednesday 3:55 AM"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.lf.date.complete", "key": "jira.lf.date.complete", "value": "dd/MMM/yy h:mm a", "name": "Complete Date/Time Format", "type": "string", "example": "23/May/07 3:55 AM"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.lf.date.dmy", "key": "jira.lf.date.dmy", "value": "dd/MMM/yy", "name": "Day/Month/Year Format", "type": "string", "example": "23/May/07"}, "emitted_at": 1626682849000} -{"stream": "labels", "data": {"id": "jira.date.time.picker.use.iso8061", "key": "jira.date.time.picker.use.iso8061", "value": "false", "name": "Use ISO8601 standard in Date Picker", "desc": "Turning it on will cause Monday to be the first day of week in the Date Picker, as specified by the ISO8601 standard", "type": "boolean"}, "emitted_at": 1626682849000} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-jira/integration_tests/expected_records.txt new file mode 100644 index 000000000000..07821e7f0f92 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/integration_tests/expected_records.txt @@ -0,0 +1,198 @@ +{"stream": "application_roles", "data": {"key": "jira-software", "groups": ["jira-software-users", "atlassian-addons-admin", "system-administrators", "site-admins", "administrators"], "groupDetails": [{"name": "jira-software-users", "groupId": "4452b254-035d-469a-a422-1f4666dce50e", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e"}, {"name": "administrators", "groupId": "0ca6e087-7a61-4986-a269-98fe268854a1", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=0ca6e087-7a61-4986-a269-98fe268854a1"}, {"name": "atlassian-addons-admin", "groupId": "90b9ffb1-ed26-4b5e-af59-8f684900ce83", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=90b9ffb1-ed26-4b5e-af59-8f684900ce83"}, {"name": "system-administrators", "groupId": "ed0ab3a1-afa4-4ff5-a878-fc90c1574818", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=ed0ab3a1-afa4-4ff5-a878-fc90c1574818"}, {"name": "site-admins", "groupId": "76dad095-fc1a-467a-88b4-fde534220985", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=76dad095-fc1a-467a-88b4-fde534220985"}], "name": "Jira Software", "defaultGroups": ["jira-software-users"], "defaultGroupsDetails": [{"name": "jira-software-users", "groupId": "4452b254-035d-469a-a422-1f4666dce50e", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e"}], "selectedByDefault": false, "defined": true, "numberOfSeats": 10, "remainingSeats": 6, "userCount": 4, "userCountDescription": "users", "hasUnlimitedSeats": false, "platform": false}, "emitted_at": 1671213797371} +{"stream": "avatars", "data": {"id": "10300", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/useravatar?size=xsmall&avatarId=10300", "24x24": "/secure/useravatar?size=small&avatarId=10300", "32x32": "/secure/useravatar?size=medium&avatarId=10300", "48x48": "/secure/useravatar?avatarId=10300"}}, "emitted_at": 1671213797679} +{"stream": "avatars", "data": {"id": "10303", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/useravatar?size=xsmall&avatarId=10303", "24x24": "/secure/useravatar?size=small&avatarId=10303", "32x32": "/secure/useravatar?size=medium&avatarId=10303", "48x48": "/secure/useravatar?avatarId=10303"}}, "emitted_at": 1671213797679} +{"stream": "avatars", "data": {"id": "10304", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/useravatar?size=xsmall&avatarId=10304", "24x24": "/secure/useravatar?size=small&avatarId=10304", "32x32": "/secure/useravatar?size=medium&avatarId=10304", "48x48": "/secure/useravatar?avatarId=10304"}}, "emitted_at": 1671213797680} +{"stream": "avatars", "data": {"id": "10306", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/useravatar?size=xsmall&avatarId=10306", "24x24": "/secure/useravatar?size=small&avatarId=10306", "32x32": "/secure/useravatar?size=medium&avatarId=10306", "48x48": "/secure/useravatar?avatarId=10306"}}, "emitted_at": 1671213797680} +{"stream": "avatars", "data": {"id": "10307", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/useravatar?size=xsmall&avatarId=10307", "24x24": "/secure/useravatar?size=small&avatarId=10307", "32x32": "/secure/useravatar?size=medium&avatarId=10307", "48x48": "/secure/useravatar?avatarId=10307"}}, "emitted_at": 1671213797680} +{"stream": "boards", "data": {"id": 1, "self": "https://airbyteio.atlassian.net/rest/agile/1.0/board/1", "name": "IT board", "type": "scrum", "location": {"projectId": 10000, "displayName": "integration-tests (IT)", "projectName": "integration-tests", "projectKey": "IT", "projectTypeKey": "software", "avatarURI": "https://airbyteio.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10424?size=small", "name": "integration-tests (IT)"}, "projectId": "10000", "projectKey": "IT"}, "emitted_at": 1671213798354} +{"stream": "boards", "data": {"id": 17, "self": "https://airbyteio.atlassian.net/rest/agile/1.0/board/17", "name": "TESTKEY13 board", "type": "scrum", "location": {"projectId": 10016, "displayName": "Test project 13 (TESTKEY13)", "projectName": "Test project 13", "projectKey": "TESTKEY13", "projectTypeKey": "software", "avatarURI": "https://airbyteio.atlassian.net/rest/api/2/universal_avatar/view/type/project/avatar/10425?size=small", "name": "Test project 13 (TESTKEY13)"}, "projectId": "10016", "projectKey": "TESTKEY13"}, "emitted_at": 1671213798354} +{"stream": "board_issues", "data": {"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "10012", "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10012", "key": "IT-6", "fields": {"updated": "2022-05-17T04:26:21.613-0700", "created": "2021-03-11T06:14:18.085-0800"}, "boardId": 1, "created": "2021-03-11T06:14:18.085-0800", "updated": "2022-05-17T04:26:21.613-0700"}, "emitted_at": 1671213799260} +{"stream": "board_issues", "data": {"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "10000", "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10000", "key": "IT-1", "fields": {"updated": "2022-05-17T04:26:28.885-0700", "created": "2020-12-07T06:12:17.863-0800"}, "boardId": 1, "created": "2020-12-07T06:12:17.863-0800", "updated": "2022-05-17T04:26:28.885-0700"}, "emitted_at": 1671213799261} +{"stream": "board_issues", "data": {"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "10001", "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10001", "key": "IT-2", "fields": {"updated": "2021-04-15T11:40:26.679-0700", "created": "2020-12-07T06:13:00.586-0800"}, "boardId": 1, "created": "2020-12-07T06:13:00.586-0800", "updated": "2021-04-15T11:40:26.679-0700"}, "emitted_at": 1671213799261} +{"stream": "board_issues", "data": {"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "10019", "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10019", "key": "IT-9", "fields": {"updated": "2022-05-17T04:25:20.681-0700", "created": "2021-03-11T06:14:24.791-0800"}, "boardId": 1, "created": "2021-03-11T06:14:24.791-0800", "updated": "2022-05-17T04:25:20.681-0700"}, "emitted_at": 1671213799261} +{"stream": "board_issues", "data": {"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "10007", "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10007", "key": "IT-3", "fields": {"updated": "2021-04-15T11:40:26.030-0700", "created": "2021-03-11T06:14:12.850-0800"}, "boardId": 1, "created": "2021-03-11T06:14:12.850-0800", "updated": "2021-04-15T11:40:26.030-0700"}, "emitted_at": 1671213799262} +{"stream": "dashboards", "data": {"id": "10000", "isFavourite": false, "name": "Default dashboard", "popularity": 0, "self": "https://airbyteio.atlassian.net/rest/api/3/dashboard/10000", "sharePermissions": [{"id": 10000, "type": "global"}], "editPermissions": [], "view": "/jira/dashboards/10000", "systemDashboard": true}, "emitted_at": 1671213800399} +{"stream": "dashboards", "data": {"description": "A dashboard to help auditors identify sample of issues to check.", "id": "10002", "isFavourite": true, "name": "Test dashboard 1", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "displayName": "integration test", "active": true, "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}}, "popularity": 1, "rank": 0, "self": "https://airbyteio.atlassian.net/rest/api/3/dashboard/10002", "sharePermissions": [], "editPermissions": [], "view": "/jira/dashboards/10002", "systemDashboard": false}, "emitted_at": 1671213800399} +{"stream": "dashboards", "data": {"description": "A dashboard to help auditors identify sample of issues to check.", "id": "10011", "isFavourite": true, "name": "Test dashboard 10", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "displayName": "integration test", "active": true, "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}}, "popularity": 1, "rank": 9, "self": "https://airbyteio.atlassian.net/rest/api/3/dashboard/10011", "sharePermissions": [], "editPermissions": [], "view": "/jira/dashboards/10011", "systemDashboard": false}, "emitted_at": 1671213800399} +{"stream": "dashboards", "data": {"description": "A dashboard to help auditors identify sample of issues to check.", "id": "10022", "isFavourite": true, "name": "Test dashboard 1001", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "displayName": "integration test", "active": true, "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}}, "popularity": 1, "rank": 20, "self": "https://airbyteio.atlassian.net/rest/api/3/dashboard/10022", "sharePermissions": [], "editPermissions": [], "view": "/jira/dashboards/10022", "systemDashboard": false}, "emitted_at": 1671213800400} +{"stream": "dashboards", "data": {"description": "A dashboard to help auditors identify sample of issues to check.", "id": "10031", "isFavourite": true, "name": "Test dashboard 10010", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "displayName": "integration test", "active": true, "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}}, "popularity": 1, "rank": 29, "self": "https://airbyteio.atlassian.net/rest/api/3/dashboard/10031", "sharePermissions": [], "editPermissions": [], "view": "/jira/dashboards/10031", "systemDashboard": false}, "emitted_at": 1671213800400} +{"stream": "filters", "data": {"expand": "description,owner,jql,viewUrl,searchUrl,favourite,favouritedCount,sharePermissions,editPermissions,isWritable,subscriptions", "self": "https://airbyteio.atlassian.net/rest/api/3/filter/10003", "id": "10003", "name": "Filter for EX board", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "jql": "project = EX ORDER BY Rank ASC", "viewUrl": "https://airbyteio.atlassian.net/issues/?filter=10003", "searchUrl": "https://airbyteio.atlassian.net/rest/api/3/search?jql=project+%3D+EX+ORDER+BY+Rank+ASC", "favourite": false, "favouritedCount": 0, "sharePermissions": [{"id": 10004, "type": "project", "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10003", "id": "10003", "key": "EX", "assigneeType": "PROJECT_LEAD", "name": "Example", "roles": {}, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "properties": {}}}], "isWritable": true, "subscriptions": []}, "emitted_at": 1671213801278} +{"stream": "filters", "data": {"expand": "description,owner,jql,viewUrl,searchUrl,favourite,favouritedCount,sharePermissions,editPermissions,isWritable,subscriptions", "self": "https://airbyteio.atlassian.net/rest/api/3/filter/10000", "id": "10000", "name": "Filter for IT board", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "jql": "project = IT ORDER BY Rank ASC", "viewUrl": "https://airbyteio.atlassian.net/issues/?filter=10000", "searchUrl": "https://airbyteio.atlassian.net/rest/api/3/search?jql=project+%3D+IT+ORDER+BY+Rank+ASC", "favourite": false, "favouritedCount": 0, "sharePermissions": [{"id": 10058, "type": "group", "group": {"name": "Test group 2", "groupId": "5ddb26f1-2d31-414a-ac34-b2d6de38805d", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=5ddb26f1-2d31-414a-ac34-b2d6de38805d"}}, {"id": 10059, "type": "group", "group": {"name": "Test group 0", "groupId": "ee8d15d1-6462-406a-b0a6-8065b7e4cdd7", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=ee8d15d1-6462-406a-b0a6-8065b7e4cdd7"}}, {"id": 10057, "type": "project", "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10000", "id": "10000", "key": "IT", "assigneeType": "PROJECT_LEAD", "name": "integration-tests", "roles": {}, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "properties": {}}}], "isWritable": true, "subscriptions": []}, "emitted_at": 1671213801278} +{"stream": "filters", "data": {"expand": "description,owner,jql,viewUrl,searchUrl,favourite,favouritedCount,sharePermissions,editPermissions,isWritable,subscriptions", "self": "https://airbyteio.atlassian.net/rest/api/3/filter/10001", "id": "10001", "name": "Filter for P2 board", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "jql": "project = P2 ORDER BY Rank ASC", "viewUrl": "https://airbyteio.atlassian.net/issues/?filter=10001", "searchUrl": "https://airbyteio.atlassian.net/rest/api/3/search?jql=project+%3D+P2+ORDER+BY+Rank+ASC", "favourite": false, "favouritedCount": 0, "sharePermissions": [{"id": 10063, "type": "group", "group": {"name": "Test group 0", "groupId": "ee8d15d1-6462-406a-b0a6-8065b7e4cdd7", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=ee8d15d1-6462-406a-b0a6-8065b7e4cdd7"}}, {"id": 10064, "type": "group", "group": {"name": "Test group 1", "groupId": "bda1faf1-1a1a-42d1-82e4-a428c8b8f67c", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=bda1faf1-1a1a-42d1-82e4-a428c8b8f67c"}}, {"id": 10062, "type": "project", "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10001", "id": "10001", "key": "P2", "assigneeType": "PROJECT_LEAD", "name": "project-2", "roles": {}, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10411", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10411?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10411?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10411?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "properties": {}}}], "isWritable": true, "subscriptions": []}, "emitted_at": 1671213801279} +{"stream": "filters", "data": {"expand": "description,owner,jql,viewUrl,searchUrl,favourite,favouritedCount,sharePermissions,editPermissions,isWritable,subscriptions", "self": "https://airbyteio.atlassian.net/rest/api/3/filter/10004", "id": "10004", "name": "Filter for TESTKEY1 board", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "jql": "project = TESTKEY1 ORDER BY Rank ASC", "viewUrl": "https://airbyteio.atlassian.net/issues/?filter=10004", "searchUrl": "https://airbyteio.atlassian.net/rest/api/3/search?jql=project+%3D+TESTKEY1+ORDER+BY+Rank+ASC", "favourite": false, "favouritedCount": 0, "sharePermissions": [{"id": 10066, "type": "group", "group": {"name": "Test group 0", "groupId": "ee8d15d1-6462-406a-b0a6-8065b7e4cdd7", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=ee8d15d1-6462-406a-b0a6-8065b7e4cdd7"}}, {"id": 10065, "type": "project", "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10004", "id": "10004", "key": "TESTKEY1", "assigneeType": "PROJECT_LEAD", "name": "Test project 1", "roles": {}, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10419", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10419?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10419?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10419?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "properties": {}}}], "isWritable": true, "subscriptions": []}, "emitted_at": 1671213801279} +{"stream": "filters", "data": {"expand": "description,owner,jql,viewUrl,searchUrl,favourite,favouritedCount,sharePermissions,editPermissions,isWritable,subscriptions", "self": "https://airbyteio.atlassian.net/rest/api/3/filter/10013", "id": "10013", "name": "Filter for TESTKEY10 board", "owner": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "jql": "project = TESTKEY10 ORDER BY Rank ASC", "viewUrl": "https://airbyteio.atlassian.net/issues/?filter=10013", "searchUrl": "https://airbyteio.atlassian.net/rest/api/3/search?jql=project+%3D+TESTKEY10+ORDER+BY+Rank+ASC", "favourite": false, "favouritedCount": 0, "sharePermissions": [{"id": 10014, "type": "project", "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10013", "id": "10013", "key": "TESTKEY10", "assigneeType": "PROJECT_LEAD", "name": "Test project 10", "roles": {}, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10416", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10416?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10416?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10416?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "properties": {}}}], "isWritable": true, "subscriptions": []}, "emitted_at": 1671213801279} +{"stream": "filter_sharing", "data": {"id": 10004, "type": "project", "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10003", "id": "10003", "key": "EX", "assigneeType": "PROJECT_LEAD", "name": "Example", "roles": {}, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "properties": {}}}, "emitted_at": 1671213802092} +{"stream": "filter_sharing", "data": {"id": 10058, "type": "group", "group": {"name": "Test group 2", "groupId": "5ddb26f1-2d31-414a-ac34-b2d6de38805d", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=5ddb26f1-2d31-414a-ac34-b2d6de38805d"}}, "emitted_at": 1671213802317} +{"stream": "filter_sharing", "data": {"id": 10059, "type": "group", "group": {"name": "Test group 0", "groupId": "ee8d15d1-6462-406a-b0a6-8065b7e4cdd7", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=ee8d15d1-6462-406a-b0a6-8065b7e4cdd7"}}, "emitted_at": 1671213802317} +{"stream": "filter_sharing", "data": {"id": 10057, "type": "project", "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10000", "id": "10000", "key": "IT", "assigneeType": "PROJECT_LEAD", "name": "integration-tests", "roles": {}, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "properties": {}}}, "emitted_at": 1671213802317} +{"stream": "filter_sharing", "data": {"id": 10063, "type": "group", "group": {"name": "Test group 0", "groupId": "ee8d15d1-6462-406a-b0a6-8065b7e4cdd7", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=ee8d15d1-6462-406a-b0a6-8065b7e4cdd7"}}, "emitted_at": 1671213802529} +{"stream": "groups", "data": {"name": "Test group 17", "groupId": "022bc924-ac57-442d-80c9-df042b73ad87"}, "emitted_at": 1671213817460} +{"stream": "groups", "data": {"name": "administrators", "groupId": "0ca6e087-7a61-4986-a269-98fe268854a1"}, "emitted_at": 1671213817460} +{"stream": "groups", "data": {"name": "jira-users", "groupId": "2513da2e-08cf-4415-9bcd-cbbd32fa227d"}, "emitted_at": 1671213817460} +{"stream": "groups", "data": {"name": "Test group 6", "groupId": "2d4af5cf-cd34-4e78-9445-abc000cdd5cc"}, "emitted_at": 1671213817460} +{"stream": "groups", "data": {"name": "jira-admins-airbyteio", "groupId": "2d55cbe0-4cab-46a4-853e-ec31162ab9a3"}, "emitted_at": 1671213817461} +{"stream": "issues", "data": {"expand": "operations,customfield_10030.properties,versionedRepresentations,editmeta,changelog,customfield_10029.properties,customfield_10010.requestTypePractice,renderedFields", "id": "10627", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10627", "key": "TESTKEY13-1", "fields": {"statuscategorychangedate": "2022-06-09T16:29:32.382-0700", "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10000", "id": "10000", "description": "A big user story that needs to be broken down. Created by Jira Software - do not edit or delete.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/issuetypes/epic.svg", "name": "Epic", "subtask": false, "hierarchyLevel": 1}, "timespent": null, "customfield_10030": null, "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10016", "id": "10016", "key": "TESTKEY13", "name": "Test project 13", "projectTypeKey": "software", "simplified": false, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=medium"}}, "fixVersions": [], "aggregatetimespent": null, "resolution": null, "customfield_10029": null, "resolutiondate": null, "workratio": -1, "watches": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/TESTKEY13-1/watchers", "watchCount": 1, "isWatching": true}, "lastViewed": "2022-12-15T13:21:26.510-0800", "issuerestriction": {"issuerestrictions": {}, "shouldDisplay": false}, "customfield_10181": null, "created": "2022-06-09T16:29:31.871-0700", "customfield_10020": null, "customfield_10021": null, "customfield_10022": null, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/4", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/low.svg", "name": "Low", "id": "4"}, "customfield_10023": null, "customfield_10024": null, "customfield_10025": null, "customfield_10026": null, "labels": ["test"], "customfield_10016": null, "customfield_10017": "dark_orange", "customfield_10215": null, "customfield_10018": {"hasEpicLinkFieldDependency": false, "showField": false, "nonEditableReason": {"reason": "PLUGIN_LICENSE_ERROR", "message": "The Parent Link is only available to Jira Premium users."}}, "customfield_10019": "0|i0077b:", "aggregatetimeoriginalestimate": null, "timeestimate": null, "versions": [], "issuelinks": [], "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updated": "2022-12-08T02:22:18.889-0800", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "components": [{"self": "https://airbyteio.atlassian.net/rest/api/3/component/10065", "id": "10065", "name": "Component 0", "description": "This is a Jira component"}], "timeoriginalestimate": null, "description": {"version": 1, "type": "doc", "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Test issue"}]}]}, "customfield_10010": null, "customfield_10011": "EPIC NAME TEXT", "customfield_10210": null, "customfield_10012": {"self": "https://airbyteio.atlassian.net/rest/api/3/customFieldOption/10016", "value": "To Do", "id": "10016"}, "customfield_10013": "ghx-label-14", "customfield_10211": null, "customfield_10212": null, "customfield_10014": null, "timetracking": {}, "customfield_10015": null, "customfield_10213": null, "customfield_10005": null, "customfield_10006": null, "security": null, "customfield_10007": null, "customfield_10008": null, "aggregatetimeestimate": null, "customfield_10009": "2022-12-09T00:00:00.000-0800", "attachment": [], "customfield_10209": null, "summary": "My Summary", "creator": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "subtasks": [], "reporter": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "aggregateprogress": {"progress": 0, "total": 0}, "customfield_10001": null, "customfield_10002": null, "customfield_10003": [{"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}], "customfield_10047": null, "customfield_10004": null, "environment": null, "duedate": null, "progress": {"progress": 0, "total": 0}, "votes": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/TESTKEY13-1/votes", "votes": 0, "hasVoted": false}, "comment": {"comments": [], "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10627/comment", "maxResults": 0, "total": 0, "startAt": 0}, "worklog": {"startAt": 0, "maxResults": 20, "total": 0, "worklogs": []}}, "projectId": "10016", "projectKey": "TESTKEY13", "created": "2022-06-09T16:29:31.871-0700", "updated": "2022-12-08T02:22:18.889-0800"}, "emitted_at": 1671213819469} +{"stream": "issues", "data": {"expand": "operations,customfield_10030.properties,versionedRepresentations,editmeta,changelog,customfield_10029.properties,customfield_10010.requestTypePractice,renderedFields", "id": "10626", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10626", "key": "IT-26", "fields": {"statuscategorychangedate": "2022-05-17T04:28:19.775-0700", "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10000", "id": "10000", "description": "A big user story that needs to be broken down. Created by Jira Software - do not edit or delete.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/issuetypes/epic.svg", "name": "Epic", "subtask": false, "hierarchyLevel": 1}, "timespent": null, "customfield_10030": null, "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10000", "id": "10000", "key": "IT", "name": "integration-tests", "projectTypeKey": "software", "simplified": false, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=medium"}}, "fixVersions": [], "aggregatetimespent": null, "resolution": null, "customfield_10029": null, "resolutiondate": null, "workratio": -1, "lastViewed": "2022-12-06T12:56:19.627-0800", "issuerestriction": {"issuerestrictions": {}, "shouldDisplay": false}, "watches": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-26/watchers", "watchCount": 1, "isWatching": true}, "customfield_10181": null, "created": "2022-05-17T04:28:19.523-0700", "customfield_10020": null, "customfield_10021": null, "customfield_10022": null, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/4", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/low.svg", "name": "Low", "id": "4"}, "customfield_10023": null, "customfield_10024": null, "customfield_10025": null, "customfield_10026": null, "labels": [], "customfield_10016": null, "customfield_10017": "dark_yellow", "customfield_10215": null, "customfield_10018": {"hasEpicLinkFieldDependency": false, "showField": false, "nonEditableReason": {"reason": "PLUGIN_LICENSE_ERROR", "message": "The Parent Link is only available to Jira Premium users."}}, "customfield_10019": "0|i00773:", "timeestimate": null, "aggregatetimeoriginalestimate": null, "versions": [], "issuelinks": [{"id": "10263", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLink/10263", "type": {"id": "10001", "name": "Cloners", "inward": "is cloned by", "outward": "clones", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10001"}, "outwardIssue": {"id": "10625", "key": "IT-25", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10625", "fields": {"summary": "Aggregate issues", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/4", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/low.svg", "name": "Low", "id": "4"}, "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10000", "id": "10000", "description": "A big user story that needs to be broken down. Created by Jira Software - do not edit or delete.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/issuetypes/epic.svg", "name": "Epic", "subtask": false, "hierarchyLevel": 1}}}}], "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updated": "2022-05-17T04:28:19.834-0700", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "components": [{"self": "https://airbyteio.atlassian.net/rest/api/3/component/10049", "id": "10049", "name": "Component 3", "description": "This is a Jira component"}], "timeoriginalestimate": null, "description": {"version": 1, "type": "doc", "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Implement OAUth"}]}]}, "customfield_10010": null, "customfield_10011": "Test 2", "customfield_10210": null, "customfield_10012": {"self": "https://airbyteio.atlassian.net/rest/api/3/customFieldOption/10016", "value": "To Do", "id": "10016"}, "customfield_10013": "ghx-label-2", "customfield_10211": null, "customfield_10212": null, "customfield_10014": null, "customfield_10213": null, "timetracking": {}, "customfield_10015": null, "customfield_10005": null, "customfield_10006": null, "security": null, "customfield_10007": null, "customfield_10008": null, "customfield_10009": null, "attachment": [], "aggregatetimeestimate": null, "customfield_10209": null, "summary": "CLONE - Aggregate issues", "creator": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "subtasks": [], "reporter": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "aggregateprogress": {"progress": 0, "total": 0}, "customfield_10001": null, "customfield_10002": null, "customfield_10003": null, "customfield_10047": null, "customfield_10004": null, "environment": null, "duedate": null, "progress": {"progress": 0, "total": 0}, "votes": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-26/votes", "votes": 0, "hasVoted": false}, "comment": {"comments": [], "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10626/comment", "maxResults": 0, "total": 0, "startAt": 0}, "worklog": {"startAt": 0, "maxResults": 20, "total": 0, "worklogs": []}}, "projectId": "10000", "projectKey": "IT", "created": "2022-05-17T04:28:19.523-0700", "updated": "2022-05-17T04:28:19.834-0700"}, "emitted_at": 1671213819470} +{"stream": "issues", "data": {"expand": "operations,customfield_10030.properties,versionedRepresentations,editmeta,changelog,customfield_10029.properties,customfield_10010.requestTypePractice,renderedFields", "id": "10625", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10625", "key": "IT-25", "fields": {"statuscategorychangedate": "2022-05-17T04:06:24.675-0700", "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10000", "id": "10000", "description": "A big user story that needs to be broken down. Created by Jira Software - do not edit or delete.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/issuetypes/epic.svg", "name": "Epic", "subtask": false, "hierarchyLevel": 1}, "timespent": null, "customfield_10030": null, "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10000", "id": "10000", "key": "IT", "name": "integration-tests", "projectTypeKey": "software", "simplified": false, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=medium"}}, "fixVersions": [], "aggregatetimespent": null, "resolution": null, "customfield_10029": null, "resolutiondate": null, "workratio": -1, "watches": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-25/watchers", "watchCount": 1, "isWatching": true}, "lastViewed": null, "issuerestriction": {"issuerestrictions": {}, "shouldDisplay": false}, "customfield_10181": null, "created": "2022-05-17T04:06:24.048-0700", "customfield_10020": null, "customfield_10021": null, "customfield_10022": null, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/4", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/low.svg", "name": "Low", "id": "4"}, "customfield_10023": null, "customfield_10024": null, "customfield_10025": null, "labels": [], "customfield_10026": null, "customfield_10016": null, "customfield_10017": "dark_yellow", "customfield_10215": null, "customfield_10018": {"hasEpicLinkFieldDependency": false, "showField": false, "nonEditableReason": {"reason": "PLUGIN_LICENSE_ERROR", "message": "The Parent Link is only available to Jira Premium users."}}, "customfield_10019": "0|i0076v:", "timeestimate": null, "aggregatetimeoriginalestimate": null, "versions": [], "issuelinks": [{"id": "10263", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLink/10263", "type": {"id": "10001", "name": "Cloners", "inward": "is cloned by", "outward": "clones", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10001"}, "inwardIssue": {"id": "10626", "key": "IT-26", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10626", "fields": {"summary": "CLONE - Aggregate issues", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/4", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/low.svg", "name": "Low", "id": "4"}, "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10000", "id": "10000", "description": "A big user story that needs to be broken down. Created by Jira Software - do not edit or delete.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/issuetypes/epic.svg", "name": "Epic", "subtask": false, "hierarchyLevel": 1}}}}], "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updated": "2022-05-17T04:28:19.876-0700", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "components": [{"self": "https://airbyteio.atlassian.net/rest/api/3/component/10049", "id": "10049", "name": "Component 3", "description": "This is a Jira component"}], "timeoriginalestimate": null, "description": {"version": 1, "type": "doc", "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Implement OAUth"}]}]}, "customfield_10010": null, "customfield_10011": "Test 2", "customfield_10210": null, "customfield_10012": {"self": "https://airbyteio.atlassian.net/rest/api/3/customFieldOption/10016", "value": "To Do", "id": "10016"}, "customfield_10013": "ghx-label-2", "customfield_10211": null, "customfield_10212": null, "customfield_10014": null, "customfield_10015": null, "customfield_10213": null, "timetracking": {}, "customfield_10005": null, "customfield_10006": null, "customfield_10007": null, "security": null, "customfield_10008": null, "aggregatetimeestimate": null, "attachment": [], "customfield_10009": null, "customfield_10209": null, "summary": "Aggregate issues", "creator": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "subtasks": [], "reporter": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "aggregateprogress": {"progress": 0, "total": 0}, "customfield_10001": null, "customfield_10002": null, "customfield_10047": null, "customfield_10003": null, "customfield_10004": null, "environment": null, "duedate": null, "progress": {"progress": 0, "total": 0}, "comment": {"comments": [{"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10625/comment/10755", "id": "10755", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"version": 1, "type": "doc", "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Closed"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2022-05-17T04:06:55.076-0700", "updated": "2022-05-17T04:06:55.076-0700", "jsdPublic": true}], "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10625/comment", "maxResults": 1, "total": 1, "startAt": 0}, "votes": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-25/votes", "votes": 0, "hasVoted": false}, "worklog": {"startAt": 0, "maxResults": 20, "total": 0, "worklogs": []}}, "projectId": "10000", "projectKey": "IT", "created": "2022-05-17T04:06:24.048-0700", "updated": "2022-05-17T04:28:19.876-0700"}, "emitted_at": 1671213819471} +{"stream": "issues", "data": {"expand": "operations,customfield_10030.properties,versionedRepresentations,editmeta,changelog,customfield_10029.properties,customfield_10010.requestTypePractice,renderedFields", "id": "10080", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080", "key": "IT-24", "fields": {"statuscategorychangedate": "2021-03-11T06:17:33.483-0800", "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10004", "id": "10004", "description": "A problem or error.", "iconUrl": "https://airbyteio.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10303?size=medium", "name": "Bug", "subtask": false, "avatarId": 10303, "hierarchyLevel": 0}, "timespent": 20880, "customfield_10030": null, "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10000", "id": "10000", "key": "IT", "name": "integration-tests", "projectTypeKey": "software", "simplified": false, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=medium"}}, "fixVersions": [], "aggregatetimespent": 20880, "resolution": null, "customfield_10029": null, "resolutiondate": null, "workratio": -1, "issuerestriction": {"issuerestrictions": {}, "shouldDisplay": false}, "watches": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-24/watchers", "watchCount": 1, "isWatching": true}, "lastViewed": null, "customfield_10181": null, "created": "2021-03-11T06:17:33.169-0800", "customfield_10020": null, "customfield_10021": null, "customfield_10022": null, "customfield_10023": null, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/3", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/medium.svg", "name": "Medium", "id": "3"}, "customfield_10024": null, "customfield_10025": null, "labels": [], "customfield_10016": null, "customfield_10017": null, "customfield_10215": null, "customfield_10018": {"hasEpicLinkFieldDependency": true, "showField": true, "nonEditableReason": {"reason": "PLUGIN_LICENSE_ERROR", "message": "The Parent Link is only available to Jira Premium users."}}, "customfield_10019": "0|i000hr:", "aggregatetimeoriginalestimate": null, "timeestimate": 0, "versions": [], "issuelinks": [{"id": "10244", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLink/10244", "type": {"id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10002"}, "inwardIssue": {"id": "10069", "key": "IT-22", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10069", "fields": {"summary": "Test 63", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/3", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/medium.svg", "name": "Medium", "id": "3"}, "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10000", "id": "10000", "description": "A big user story that needs to be broken down. Created by Jira Software - do not edit or delete.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/issuetypes/epic.svg", "name": "Epic", "subtask": false, "hierarchyLevel": 1}}}}, {"id": "10243", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLink/10243", "type": {"id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10002"}, "inwardIssue": {"id": "10075", "key": "IT-23", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075", "fields": {"summary": "Test 69", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/3", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/medium.svg", "name": "Medium", "id": "3"}, "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10004", "id": "10004", "description": "A problem or error.", "iconUrl": "https://airbyteio.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10303?size=medium", "name": "Bug", "subtask": false, "avatarId": 10303, "hierarchyLevel": 0}}}}], "assignee": null, "updated": "2021-04-15T11:39:47.872-0700", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "components": [], "timeoriginalestimate": null, "description": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Test description 74"}]}]}, "customfield_10010": null, "customfield_10210": null, "customfield_10211": null, "customfield_10212": null, "customfield_10014": null, "timetracking": {"remainingEstimate": "0m", "timeSpent": "5h 48m", "remainingEstimateSeconds": 0, "timeSpentSeconds": 20880}, "customfield_10015": null, "customfield_10213": null, "customfield_10005": null, "customfield_10006": null, "customfield_10007": null, "security": null, "customfield_10008": null, "customfield_10009": null, "attachment": [{"self": "https://airbyteio.atlassian.net/rest/api/3/attachment/10123", "id": "10123", "filename": "demo.xlsx", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-14T14:11:01.652-0700", "size": 7360, "content": "https://airbyteio.atlassian.net/rest/api/3/attachment/content/10123"}], "aggregatetimeestimate": 0, "customfield_10209": null, "summary": "Test 74", "creator": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "subtasks": [], "reporter": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "aggregateprogress": {"progress": 20880, "total": 20880, "percent": 100}, "customfield_10001": null, "customfield_10002": null, "customfield_10047": null, "customfield_10003": null, "customfield_10004": null, "environment": null, "duedate": null, "progress": {"progress": 20880, "total": 20880, "percent": 100}, "comment": {"comments": [], "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080/comment", "maxResults": 0, "total": 0, "startAt": 0}, "votes": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-24/votes", "votes": 1, "hasVoted": true}, "worklog": {"startAt": 0, "maxResults": 20, "total": 3, "worklogs": [{"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080/worklog/11708", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 0", "type": "text"}]}]}, "created": "2021-04-15T11:39:46.574-0700", "updated": "2021-04-15T11:39:46.574-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "2h 21m", "timeSpentSeconds": 8460, "id": "11708", "issueId": "10080"}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080/worklog/11709", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 1", "type": "text"}]}]}, "created": "2021-04-15T11:39:47.215-0700", "updated": "2021-04-15T11:39:47.215-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "37m", "timeSpentSeconds": 2220, "id": "11709", "issueId": "10080"}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080/worklog/11710", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 2", "type": "text"}]}]}, "created": "2021-04-15T11:39:47.834-0700", "updated": "2021-04-15T11:39:47.834-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "2h 50m", "timeSpentSeconds": 10200, "id": "11710", "issueId": "10080"}]}}, "projectId": "10000", "projectKey": "IT", "created": "2021-03-11T06:17:33.169-0800", "updated": "2021-04-15T11:39:47.872-0700"}, "emitted_at": 1671213819472} +{"stream": "issues", "data": {"expand": "operations,customfield_10030.properties,versionedRepresentations,editmeta,changelog,customfield_10029.properties,customfield_10010.requestTypePractice,renderedFields", "id": "10075", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075", "key": "IT-23", "fields": {"statuscategorychangedate": "2021-03-11T06:17:28.873-0800", "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10004", "id": "10004", "description": "A problem or error.", "iconUrl": "https://airbyteio.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10303?size=medium", "name": "Bug", "subtask": false, "avatarId": 10303, "hierarchyLevel": 0}, "timespent": 26880, "customfield_10030": null, "project": {"self": "https://airbyteio.atlassian.net/rest/api/3/project/10000", "id": "10000", "key": "IT", "name": "integration-tests", "projectTypeKey": "software", "simplified": false, "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=medium"}}, "fixVersions": [], "aggregatetimespent": 26880, "resolution": null, "customfield_10029": null, "resolutiondate": null, "workratio": -1, "issuerestriction": {"issuerestrictions": {}, "shouldDisplay": false}, "watches": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-23/watchers", "watchCount": 1, "isWatching": true}, "lastViewed": null, "customfield_10181": null, "created": "2021-03-11T06:17:28.477-0800", "customfield_10020": null, "customfield_10021": null, "customfield_10022": null, "customfield_10023": null, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/3", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/medium.svg", "name": "Medium", "id": "3"}, "customfield_10024": null, "customfield_10025": null, "labels": [], "customfield_10016": null, "customfield_10215": null, "customfield_10017": null, "customfield_10018": {"hasEpicLinkFieldDependency": true, "showField": true, "nonEditableReason": {"reason": "PLUGIN_LICENSE_ERROR", "message": "The Parent Link is only available to Jira Premium users."}}, "customfield_10019": "0|i000gn:", "aggregatetimeoriginalestimate": null, "timeestimate": 0, "versions": [], "issuelinks": [{"id": "10243", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLink/10243", "type": {"id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10002"}, "outwardIssue": {"id": "10080", "key": "IT-24", "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080", "fields": {"summary": "Test 74", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "priority": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/3", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/medium.svg", "name": "Medium", "id": "3"}, "issuetype": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10004", "id": "10004", "description": "A problem or error.", "iconUrl": "https://airbyteio.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10303?size=medium", "name": "Bug", "subtask": false, "avatarId": 10303, "hierarchyLevel": 0}}}}], "assignee": null, "updated": "2021-04-15T11:39:50.244-0700", "status": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "components": [], "timeoriginalestimate": null, "description": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Test description 69"}]}]}, "customfield_10010": null, "customfield_10210": null, "customfield_10211": null, "customfield_10212": null, "customfield_10014": null, "timetracking": {"remainingEstimate": "0m", "timeSpent": "7h 28m", "remainingEstimateSeconds": 0, "timeSpentSeconds": 26880}, "customfield_10213": null, "customfield_10015": null, "customfield_10005": null, "customfield_10006": null, "customfield_10007": null, "security": null, "customfield_10008": null, "attachment": [{"self": "https://airbyteio.atlassian.net/rest/api/3/attachment/10126", "id": "10126", "filename": "demo.csv", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-14T14:11:04.596-0700", "size": 284042, "content": "https://airbyteio.atlassian.net/rest/api/3/attachment/content/10126"}, {"self": "https://airbyteio.atlassian.net/rest/api/3/attachment/10125", "id": "10125", "filename": "demo.json", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-14T14:11:03.555-0700", "size": 15576, "content": "https://airbyteio.atlassian.net/rest/api/3/attachment/content/10125"}, {"self": "https://airbyteio.atlassian.net/rest/api/3/attachment/10127", "id": "10127", "filename": "demo.xls", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-14T14:11:05.632-0700", "size": 13824, "content": "https://airbyteio.atlassian.net/rest/api/3/attachment/content/10127"}, {"self": "https://airbyteio.atlassian.net/rest/api/3/attachment/10124", "id": "10124", "filename": "demo.xlsx", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-14T14:11:02.575-0700", "size": 7360, "content": "https://airbyteio.atlassian.net/rest/api/3/attachment/content/10124"}], "customfield_10009": null, "aggregatetimeestimate": 0, "customfield_10209": null, "summary": "Test 69", "creator": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "subtasks": [], "reporter": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "aggregateprogress": {"progress": 26880, "total": 26880, "percent": 100}, "customfield_10001": null, "customfield_10002": null, "customfield_10047": null, "customfield_10003": null, "customfield_10004": null, "environment": null, "duedate": null, "progress": {"progress": 26880, "total": 26880, "percent": 100}, "comment": {"comments": [{"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10521", "id": "10521", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eget venenatis elit. Duis eu justo eget augue iaculis fermentum. Sed semper quam laoreet nisi egestas at posuere augue semper.", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-14T14:32:43.099-0700", "updated": "2021-04-14T14:32:43.099-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10639", "id": "10639", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:48.998-0700", "updated": "2021-04-15T00:08:48.998-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10640", "id": "10640", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:49.523-0700", "updated": "2021-04-15T00:08:49.523-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10641", "id": "10641", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:50.048-0700", "updated": "2021-04-15T00:08:50.048-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10642", "id": "10642", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:50.571-0700", "updated": "2021-04-15T00:08:50.571-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10643", "id": "10643", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:51.142-0700", "updated": "2021-04-15T00:08:51.142-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10644", "id": "10644", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:51.717-0700", "updated": "2021-04-15T00:08:51.717-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10645", "id": "10645", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:52.217-0700", "updated": "2021-04-15T00:08:52.217-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10646", "id": "10646", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:52.941-0700", "updated": "2021-04-15T00:08:52.941-0700", "jsdPublic": true}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10647", "id": "10647", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:53.824-0700", "updated": "2021-04-15T00:08:53.824-0700", "jsdPublic": true}], "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment", "maxResults": 10, "total": 10, "startAt": 0}, "votes": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-23/votes", "votes": 1, "hasVoted": true}, "worklog": {"startAt": 0, "maxResults": 20, "total": 4, "worklogs": [{"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/worklog/11711", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 0", "type": "text"}]}]}, "created": "2021-04-15T11:39:48.447-0700", "updated": "2021-04-15T11:39:48.447-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "1h 28m", "timeSpentSeconds": 5280, "id": "11711", "issueId": "10075"}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/worklog/11712", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 1", "type": "text"}]}]}, "created": "2021-04-15T11:39:49.096-0700", "updated": "2021-04-15T11:39:49.096-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "1h 55m", "timeSpentSeconds": 6900, "id": "11712", "issueId": "10075"}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/worklog/11713", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 2", "type": "text"}]}]}, "created": "2021-04-15T11:39:49.662-0700", "updated": "2021-04-15T11:39:49.662-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "2h 42m", "timeSpentSeconds": 9720, "id": "11713", "issueId": "10075"}, {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/worklog/11714", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 3", "type": "text"}]}]}, "created": "2021-04-15T11:39:50.205-0700", "updated": "2021-04-15T11:39:50.205-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "1h 23m", "timeSpentSeconds": 4980, "id": "11714", "issueId": "10075"}]}}, "projectId": "10000", "projectKey": "IT", "created": "2021-03-11T06:17:28.477-0800", "updated": "2021-04-15T11:39:50.244-0700"}, "emitted_at": 1671213819473} +{"stream": "issue_comments", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10625/comment/10755", "id": "10755", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"version": 1, "type": "doc", "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Closed"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2022-05-17T04:06:55.076-0700", "updated": "2022-05-17T04:06:55.076-0700", "jsdPublic": true}, "emitted_at": 1671213820670} +{"stream": "issue_comments", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10521", "id": "10521", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eget venenatis elit. Duis eu justo eget augue iaculis fermentum. Sed semper quam laoreet nisi egestas at posuere augue semper.", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-14T14:32:43.099-0700", "updated": "2021-04-14T14:32:43.099-0700", "jsdPublic": true}, "emitted_at": 1671213821008} +{"stream": "issue_comments", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10639", "id": "10639", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:48.998-0700", "updated": "2021-04-15T00:08:48.998-0700", "jsdPublic": true}, "emitted_at": 1671213821008} +{"stream": "issue_comments", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10640", "id": "10640", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:49.523-0700", "updated": "2021-04-15T00:08:49.523-0700", "jsdPublic": true}, "emitted_at": 1671213821009} +{"stream": "issue_comments", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10641", "id": "10641", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "Linked related issue!", "type": "text"}]}]}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "created": "2021-04-15T00:08:50.048-0700", "updated": "2021-04-15T00:08:50.048-0700", "jsdPublic": true}, "emitted_at": 1671213821009} +{"stream": "issue_fields", "data": {"id": "statuscategorychangedate", "key": "statuscategorychangedate", "name": "Status Category Changed", "custom": false, "orderable": false, "navigable": true, "searchable": true, "clauseNames": ["statusCategoryChangedDate"], "schema": {"type": "datetime", "system": "statuscategorychangedate"}}, "emitted_at": 1671213825227} +{"stream": "issue_fields", "data": {"id": "issuetype", "key": "issuetype", "name": "Issue Type", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["issuetype", "type"], "schema": {"type": "issuetype", "system": "issuetype"}}, "emitted_at": 1671213825228} +{"stream": "issue_fields", "data": {"id": "parent", "key": "parent", "name": "Parent", "custom": false, "orderable": false, "navigable": true, "searchable": false, "clauseNames": ["parent"]}, "emitted_at": 1671213825228} +{"stream": "issue_fields", "data": {"id": "timespent", "key": "timespent", "name": "Time Spent", "custom": false, "orderable": false, "navigable": true, "searchable": false, "clauseNames": ["timespent"], "schema": {"type": "number", "system": "timespent"}}, "emitted_at": 1671213825228} +{"stream": "issue_fields", "data": {"id": "customfield_10030", "key": "io.tempo.jira__account", "name": "Account", "untranslatedName": "Account", "custom": true, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["Account", "cf[10030]"], "schema": {"type": "option2", "custom": "com.atlassian.plugins.atlassian-connect-plugin:io.tempo.jira__account", "customId": 10030}}, "emitted_at": 1671213825228} +{"stream": "issue_field_configurations", "data": {"id": 10000, "name": "Default Field Configuration", "description": "The default field configuration", "isDefault": true}, "emitted_at": 1671213825540} +{"stream": "issue_custom_field_contexts", "data": {"id": "10130", "name": "Default Configuration Scheme for Account", "description": "Default configuration scheme generated by Jira", "isGlobalContext": true, "isAnyIssueType": true}, "emitted_at": 1671213825854} +{"stream": "issue_custom_field_contexts", "data": {"id": "10129", "name": "Default Configuration Scheme for Team", "description": "Default configuration scheme generated by Jira", "isGlobalContext": true, "isAnyIssueType": true}, "emitted_at": 1671213826040} +{"stream": "issue_custom_field_contexts", "data": {"id": "10333", "name": "Default Configuration Scheme for New custom field 3", "description": "Default configuration scheme generated by Jira", "isGlobalContext": true, "isAnyIssueType": true}, "emitted_at": 1671213826181} +{"stream": "issue_custom_field_contexts", "data": {"id": "10120", "name": "Default Configuration Scheme for Sprint", "description": "Default configuration scheme generated by Jira", "isGlobalContext": true, "isAnyIssueType": true}, "emitted_at": 1671213826340} +{"stream": "issue_custom_field_contexts", "data": {"id": "10121", "name": "Default Configuration Scheme for Flagged", "description": "Default configuration scheme generated by Jira", "isGlobalContext": true, "isAnyIssueType": true}, "emitted_at": 1671213826513} +{"stream": "issue_link_types", "data": {"id": "10000", "name": "Blocks", "inward": "is blocked by", "outward": "blocks", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10000"}, "emitted_at": 1671213831866} +{"stream": "issue_link_types", "data": {"id": "10001", "name": "Cloners", "inward": "is cloned by", "outward": "clones", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10001"}, "emitted_at": 1671213831866} +{"stream": "issue_link_types", "data": {"id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10002"}, "emitted_at": 1671213831867} +{"stream": "issue_link_types", "data": {"id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to", "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10003"}, "emitted_at": 1671213831867} +{"stream": "issue_navigator_settings", "data": {"label": "Issue Type", "value": "issuetype"}, "emitted_at": 1671213832231} +{"stream": "issue_navigator_settings", "data": {"label": "Key", "value": "issuekey"}, "emitted_at": 1671213832231} +{"stream": "issue_navigator_settings", "data": {"label": "Summary", "value": "summary"}, "emitted_at": 1671213832231} +{"stream": "issue_navigator_settings", "data": {"label": "Assignee", "value": "assignee"}, "emitted_at": 1671213832231} +{"stream": "issue_navigator_settings", "data": {"label": "Reporter", "value": "reporter"}, "emitted_at": 1671213832232} +{"stream": "issue_notification_schemes", "data": {"expand": "notificationSchemeEvents,user,group,projectRole,field,all", "id": 10000, "self": "https://airbyteio.atlassian.net/rest/api/3/notificationscheme/10000", "name": "Default Notification Scheme"}, "emitted_at": 1671213832609} +{"stream": "issue_priorities", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/1", "statusColor": "#d04437", "description": "This problem will block progress.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/highest.svg", "name": "Highest", "id": "1", "isDefault": false}, "emitted_at": 1671213832920} +{"stream": "issue_priorities", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/2", "statusColor": "#f15C75", "description": "Serious problem that could block progress.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/high.svg", "name": "High", "id": "2", "isDefault": false}, "emitted_at": 1671213832920} +{"stream": "issue_priorities", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/3", "statusColor": "#f79232", "description": "Has the potential to affect progress.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/medium.svg", "name": "Medium", "id": "3", "isDefault": false}, "emitted_at": 1671213832920} +{"stream": "issue_priorities", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/4", "statusColor": "#707070", "description": "Minor problem or easily worked around.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/low.svg", "name": "Low", "id": "4", "isDefault": false}, "emitted_at": 1671213832920} +{"stream": "issue_priorities", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/priority/5", "statusColor": "#999999", "description": "Trivial problem with little or no impact on progress.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/lowest.svg", "name": "Lowest", "id": "5", "isDefault": false}, "emitted_at": 1671213832920} +{"stream": "issue_remote_links", "data": {"id": 10046, "self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-24/remotelink/10046", "globalId": "system=https://www.mycompany.com/support&id=1", "application": {"type": "com.acme.tracker", "name": "My Acme Tracker"}, "relationship": "causes", "object": {"url": "https://www.mycompany.com/support?id=1", "title": "TSTSUP-111", "summary": "Customer support issue", "icon": {"url16x16": "https://www.mycompany.com/support/ticket.png", "title": "Support Ticket"}, "status": {"resolved": true, "icon": {"url16x16": "https://www.mycompany.com/support/resolved.png", "title": "Case Closed", "link": "https://www.mycompany.com/support?id=1&details=closed"}}}}, "emitted_at": 1671213838751} +{"stream": "issue_remote_links", "data": {"id": 10047, "self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-23/remotelink/10047", "globalId": "system=https://www.mycompany.com/support&id=1", "application": {"type": "com.acme.tracker", "name": "My Acme Tracker"}, "relationship": "causes", "object": {"url": "https://www.mycompany.com/support?id=1", "title": "TSTSUP-111", "summary": "Customer support issue", "icon": {"url16x16": "https://www.mycompany.com/support/ticket.png", "title": "Support Ticket"}, "status": {"resolved": true, "icon": {"url16x16": "https://www.mycompany.com/support/resolved.png", "title": "Case Closed", "link": "https://www.mycompany.com/support?id=1&details=closed"}}}}, "emitted_at": 1671213838894} +{"stream": "issue_remote_links", "data": {"id": 10048, "self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-22/remotelink/10048", "globalId": "system=https://www.mycompany.com/support&id=1", "application": {"type": "com.acme.tracker", "name": "My Acme Tracker"}, "relationship": "causes", "object": {"url": "https://www.mycompany.com/support?id=1", "title": "TSTSUP-111", "summary": "Customer support issue", "icon": {"url16x16": "https://www.mycompany.com/support/ticket.png", "title": "Support Ticket"}, "status": {"resolved": true, "icon": {"url16x16": "https://www.mycompany.com/support/resolved.png", "title": "Case Closed", "link": "https://www.mycompany.com/support?id=1&details=closed"}}}}, "emitted_at": 1671213839079} +{"stream": "issue_remote_links", "data": {"id": 10049, "self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-21/remotelink/10049", "globalId": "system=https://www.mycompany.com/support&id=1", "application": {"type": "com.acme.tracker", "name": "My Acme Tracker"}, "relationship": "causes", "object": {"url": "https://www.mycompany.com/support?id=1", "title": "TSTSUP-111", "summary": "Customer support issue", "icon": {"url16x16": "https://www.mycompany.com/support/ticket.png", "title": "Support Ticket"}, "status": {"resolved": true, "icon": {"url16x16": "https://www.mycompany.com/support/resolved.png", "title": "Case Closed", "link": "https://www.mycompany.com/support?id=1&details=closed"}}}}, "emitted_at": 1671213839258} +{"stream": "issue_remote_links", "data": {"id": 10050, "self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-20/remotelink/10050", "globalId": "system=https://www.mycompany.com/support&id=1", "application": {"type": "com.acme.tracker", "name": "My Acme Tracker"}, "relationship": "causes", "object": {"url": "https://www.mycompany.com/support?id=1", "title": "TSTSUP-111", "summary": "Customer support issue", "icon": {"url16x16": "https://www.mycompany.com/support/ticket.png", "title": "Support Ticket"}, "status": {"resolved": true, "icon": {"url16x16": "https://www.mycompany.com/support/resolved.png", "title": "Case Closed", "link": "https://www.mycompany.com/support?id=1&details=closed"}}}}, "emitted_at": 1671213839408} +{"stream": "issue_resolutions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/resolution/10000", "id": "10000", "description": "Work has been completed on this issue.", "name": "Done", "isDefault": false}, "emitted_at": 1671213842748} +{"stream": "issue_resolutions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/resolution/10001", "id": "10001", "description": "This issue won't be actioned.", "name": "Won't Do", "isDefault": false}, "emitted_at": 1671213842748} +{"stream": "issue_resolutions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/resolution/10002", "id": "10002", "description": "The problem is a duplicate of an existing issue.", "name": "Duplicate", "isDefault": false}, "emitted_at": 1671213842748} +{"stream": "issue_resolutions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/resolution/10003", "id": "10003", "description": "All attempts at reproducing this issue failed, or not enough information was available to reproduce the issue. Reading the code produces no clues as to why this behavior would occur. If more information appears later, please reopen the issue.", "name": "Cannot Reproduce", "isDefault": false}, "emitted_at": 1671213842749} +{"stream": "issue_resolutions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/resolution/10004", "id": "10004", "description": "Fixed", "name": "Fixed", "isDefault": false}, "emitted_at": 1671213842749} +{"stream": "issue_security_schemes", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuesecurityschemes/10001", "id": 10001, "name": "Security scheme 2", "description": "Security scheme 2"}, "emitted_at": 1671213843070} +{"stream": "issue_security_schemes", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issuesecurityschemes/10000", "id": 10000, "name": "Security scheme 1", "description": "Security scheme 1", "defaultSecurityLevelId": 10002}, "emitted_at": 1671213843070} +{"stream": "issue_type_schemes", "data": {"id": "10000", "name": "Default Issue Type Scheme", "description": "Default issue type scheme is the list of global issue types. All newly created issue types will automatically be added to this scheme.", "isDefault": true}, "emitted_at": 1671213843437} +{"stream": "issue_type_schemes", "data": {"id": "10126", "name": "IT: Scrum Issue Type Scheme", "defaultIssueTypeId": "10001"}, "emitted_at": 1671213843438} +{"stream": "issue_type_schemes", "data": {"id": "10128", "name": "P2: Scrum Issue Type Scheme", "defaultIssueTypeId": "10001"}, "emitted_at": 1671213843438} +{"stream": "issue_type_schemes", "data": {"id": "10131", "name": "TEXT: Scrum Issue Type Scheme", "defaultIssueTypeId": "10001"}, "emitted_at": 1671213843438} +{"stream": "issue_type_schemes", "data": {"id": "10132", "name": "EX: Scrum Issue Type Scheme", "defaultIssueTypeId": "10001"}, "emitted_at": 1671213843438} +{"stream": "issue_type_screen_schemes", "data": {"id": "1", "name": "Default Issue Type Screen Scheme", "description": "The default issue type screen scheme"}, "emitted_at": 1671213843906} +{"stream": "issue_type_screen_schemes", "data": {"id": "10000", "name": "IT: Scrum Issue Type Screen Scheme", "description": ""}, "emitted_at": 1671213843907} +{"stream": "issue_type_screen_schemes", "data": {"id": "10001", "name": "P2: Scrum Issue Type Screen Scheme", "description": ""}, "emitted_at": 1671213843907} +{"stream": "issue_type_screen_schemes", "data": {"id": "10002", "name": "TEXT: Scrum Issue Type Screen Scheme", "description": ""}, "emitted_at": 1671213843907} +{"stream": "issue_type_screen_schemes", "data": {"id": "10003", "name": "EX: Scrum Issue Type Screen Scheme", "description": ""}, "emitted_at": 1671213843907} +{"stream": "issue_votes", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/TESTKEY13-1/votes", "votes": 0, "hasVoted": false, "voters": []}, "emitted_at": 1671213844544} +{"stream": "issue_votes", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-26/votes", "votes": 0, "hasVoted": false, "voters": []}, "emitted_at": 1671213844716} +{"stream": "issue_votes", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-25/votes", "votes": 0, "hasVoted": false, "voters": []}, "emitted_at": 1671213844888} +{"stream": "issue_votes", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-24/votes", "votes": 1, "hasVoted": true, "voters": [{"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}]}, "emitted_at": 1671213845056} +{"stream": "issue_votes", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-23/votes", "votes": 1, "hasVoted": true, "voters": [{"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}]}, "emitted_at": 1671213845200} +{"stream": "issue_watchers", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/TESTKEY13-1/watchers", "isWatching": true, "watchCount": 1, "watchers": [{"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}]}, "emitted_at": 1671213849265} +{"stream": "issue_watchers", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-26/watchers", "isWatching": true, "watchCount": 1, "watchers": [{"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}]}, "emitted_at": 1671213849443} +{"stream": "issue_watchers", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-25/watchers", "isWatching": true, "watchCount": 1, "watchers": [{"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}]}, "emitted_at": 1671213849592} +{"stream": "issue_watchers", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-24/watchers", "isWatching": true, "watchCount": 1, "watchers": [{"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}]}, "emitted_at": 1671213849740} +{"stream": "issue_watchers", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/IT-23/watchers", "isWatching": true, "watchCount": 1, "watchers": [{"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}]}, "emitted_at": 1671213849912} +{"stream": "issue_worklogs", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080/worklog/11708", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 0", "type": "text"}]}]}, "created": "2021-04-15T11:39:46.574-0700", "updated": "2021-04-15T11:39:46.574-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "2h 21m", "timeSpentSeconds": 8460, "id": "11708", "issueId": "10080"}, "emitted_at": 1671213854742} +{"stream": "issue_worklogs", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080/worklog/11709", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 1", "type": "text"}]}]}, "created": "2021-04-15T11:39:47.215-0700", "updated": "2021-04-15T11:39:47.215-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "37m", "timeSpentSeconds": 2220, "id": "11709", "issueId": "10080"}, "emitted_at": 1671213854742} +{"stream": "issue_worklogs", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10080/worklog/11710", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 2", "type": "text"}]}]}, "created": "2021-04-15T11:39:47.834-0700", "updated": "2021-04-15T11:39:47.834-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "2h 50m", "timeSpentSeconds": 10200, "id": "11710", "issueId": "10080"}, "emitted_at": 1671213854743} +{"stream": "issue_worklogs", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/worklog/11711", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 0", "type": "text"}]}]}, "created": "2021-04-15T11:39:48.447-0700", "updated": "2021-04-15T11:39:48.447-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "1h 28m", "timeSpentSeconds": 5280, "id": "11711", "issueId": "10075"}, "emitted_at": 1671213854914} +{"stream": "issue_worklogs", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/worklog/11712", "author": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "updateAuthor": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "accountType": "atlassian"}, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"text": "I did some work here. 1", "type": "text"}]}]}, "created": "2021-04-15T11:39:49.096-0700", "updated": "2021-04-15T11:39:49.096-0700", "started": "2021-04-14T18:48:52.747-0700", "timeSpent": "1h 55m", "timeSpentSeconds": 6900, "id": "11712", "issueId": "10075"}, "emitted_at": 1671213854915} +{"stream": "jira_settings", "data": {"id": "jira.issuenav.criteria.autoupdate", "key": "jira.issuenav.criteria.autoupdate", "value": "true", "name": "Auto Update Criteria", "desc": "Turn on to update search results automatically", "type": "boolean"}, "emitted_at": 1671213858957} +{"stream": "jira_settings", "data": {"id": "jira.clone.prefix", "key": "jira.clone.prefix", "value": "CLONE -", "name": "The prefix added to the Summary field of cloned issues", "type": "string"}, "emitted_at": 1671213858958} +{"stream": "jira_settings", "data": {"id": "jira.date.picker.java.format", "key": "jira.date.picker.java.format", "value": "d/MMM/yy", "name": "Date Picker Format (Java)", "desc": "This part is only for the Java (server side) generated dates. Note that this should correspond to the javascript date picker format (jira.date.picker.javascript.format) setting.", "type": "string"}, "emitted_at": 1671213858958} +{"stream": "jira_settings", "data": {"id": "jira.date.picker.javascript.format", "key": "jira.date.picker.javascript.format", "value": "%e/%b/%y", "name": "Date Picker Format (JavaScript)", "desc": "This part is only for the JavaScript (client side) generated dates. Note that this should correspond to the java date picker format (jira.date.picker.java.format) setting.", "type": "string"}, "emitted_at": 1671213858958} +{"stream": "jira_settings", "data": {"id": "jira.date.time.picker.java.format", "key": "jira.date.time.picker.java.format", "value": "dd/MMM/yy h:mm a", "name": "DateTime Picker Format (Java)", "desc": "This part is only for the Java (server side) generated datetimes. Note that this should correspond to the javascript datetime picker format (jira.date.time.picker.javascript.format) setting.", "type": "string"}, "emitted_at": 1671213858958} +{"stream": "labels", "data": {"label": "test"}, "emitted_at": 1671213859431} +{"stream": "labels", "data": {"label": "zZ"}, "emitted_at": 1671213859431} +{"stream": "permissions", "data": {"key": "ADD_COMMENTS", "name": "Add Comments", "type": "PROJECT", "description": "Ability to comment on issues."}, "emitted_at": 1671213859785} +{"stream": "permissions", "data": {"key": "ADMINISTER", "name": "Administer Jira", "type": "GLOBAL", "description": "Create and administer projects, issue types, fields, workflows, and schemes for all projects. Users with this permission can perform most administration tasks, except: managing users, importing data, and editing system email settings."}, "emitted_at": 1671213859785} +{"stream": "permissions", "data": {"key": "ADMINISTER_PROJECTS", "name": "Administer Projects", "type": "PROJECT", "description": "Ability to administer a project in Jira."}, "emitted_at": 1671213859785} +{"stream": "permissions", "data": {"key": "ASSIGNABLE_USER", "name": "Assignable User", "type": "PROJECT", "description": "Users with this permission may be assigned to issues."}, "emitted_at": 1671213859785} +{"stream": "permissions", "data": {"key": "ASSIGN_ISSUES", "name": "Assign Issues", "type": "PROJECT", "description": "Ability to assign issues to other people."}, "emitted_at": 1671213859785} +{"stream": "permission_schemes", "data": {"expand": "permissions,user,group,projectRole,field,all", "id": 10056, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056", "name": "CAW software permission scheme", "description": "The permission scheme for Jira Software Free. In Free, any registered user can access and administer this project.", "permissions": [{"id": 14200, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14200", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADD_COMMENTS"}, {"id": 14201, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14201", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 14202, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14202", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 14203, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14203", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 14204, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14204", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 14205, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14205", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CLOSE_ISSUES"}, {"id": 14206, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14206", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 14207, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14207", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ISSUES"}, {"id": 14208, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14208", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 14209, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14209", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 14210, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14210", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 14211, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14211", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ISSUES"}, {"id": 14212, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14212", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 14213, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14213", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 14214, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14214", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 14215, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14215", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 14216, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14216", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 14217, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14217", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ISSUES"}, {"id": 14218, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14218", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 14219, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14219", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 14220, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14220", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "LINK_ISSUES"}, {"id": 14221, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14221", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 14222, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14222", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 14223, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14223", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MODIFY_REPORTER"}, {"id": 14224, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14224", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MOVE_ISSUES"}, {"id": 14225, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14225", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 14226, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14226", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 14227, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14227", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 14228, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14228", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 14229, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14229", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 14230, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14230", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 14231, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14231", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 14232, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14232", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__log-work-for-others"}, {"id": 14233, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14233", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__set-billable-hours"}, {"id": 14234, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14234", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-all-worklogs"}, {"id": 14235, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14235", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-issue-hours"}, {"id": 14404, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14404", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SET_ISSUE_SECURITY"}, {"id": 14481, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14481", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14836, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14836", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14837, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14837", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_ISSUES"}, {"id": 14236, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14236", "holder": {"type": "applicationRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 14237, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14237", "holder": {"type": "applicationRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 14238, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14238", "holder": {"type": "applicationRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 14239, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14239", "holder": {"type": "applicationRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 14240, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14240", "holder": {"type": "applicationRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 14241, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14241", "holder": {"type": "applicationRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 14242, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14242", "holder": {"type": "applicationRole"}, "permission": "CLOSE_ISSUES"}, {"id": 14243, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14243", "holder": {"type": "applicationRole"}, "permission": "CREATE_ISSUES"}, {"id": 14244, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14244", "holder": {"type": "applicationRole"}, "permission": "DELETE_ISSUES"}, {"id": 14245, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14245", "holder": {"type": "applicationRole"}, "permission": "EDIT_ISSUES"}, {"id": 14246, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14246", "holder": {"type": "applicationRole"}, "permission": "LINK_ISSUES"}, {"id": 14247, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14247", "holder": {"type": "applicationRole"}, "permission": "MODIFY_REPORTER"}, {"id": 14248, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14248", "holder": {"type": "applicationRole"}, "permission": "MOVE_ISSUES"}, {"id": 14249, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14249", "holder": {"type": "applicationRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 14250, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14250", "holder": {"type": "applicationRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 14251, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14251", "holder": {"type": "applicationRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 14252, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14252", "holder": {"type": "applicationRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 14253, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14253", "holder": {"type": "applicationRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 14254, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14254", "holder": {"type": "applicationRole"}, "permission": "ADD_COMMENTS"}, {"id": 14255, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14255", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 14256, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14256", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 14257, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14257", "holder": {"type": "applicationRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 14258, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14258", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 14259, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14259", "holder": {"type": "applicationRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 14260, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14260", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 14261, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14261", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 14262, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14262", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 14263, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14263", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 14264, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14264", "holder": {"type": "applicationRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 14265, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14265", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 14266, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14266", "holder": {"type": "applicationRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 14267, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14267", "holder": {"type": "applicationRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 14542, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14542", "holder": {"type": "applicationRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14714, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14714", "holder": {"type": "applicationRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14715, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10056/permission/14715", "holder": {"type": "applicationRole"}, "permission": "VIEW_ISSUES"}]}, "emitted_at": 1671213860528} +{"stream": "permission_schemes", "data": {"expand": "permissions,user,group,projectRole,field,all", "id": 10055, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055", "name": "CLK software permission scheme", "description": "The permission scheme for Jira Software Free. In Free, any registered user can access and administer this project.", "permissions": [{"id": 14132, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14132", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADD_COMMENTS"}, {"id": 14133, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14133", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 14134, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14134", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 14135, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14135", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 14136, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14136", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 14137, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14137", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CLOSE_ISSUES"}, {"id": 14138, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14138", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 14139, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14139", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ISSUES"}, {"id": 14140, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14140", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 14141, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14141", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 14142, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14142", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 14143, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14143", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ISSUES"}, {"id": 14144, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14144", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 14145, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14145", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 14146, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14146", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 14147, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14147", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 14148, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14148", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 14149, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14149", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ISSUES"}, {"id": 14150, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14150", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 14151, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14151", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 14152, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14152", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "LINK_ISSUES"}, {"id": 14153, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14153", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 14154, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14154", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 14155, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14155", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MODIFY_REPORTER"}, {"id": 14156, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14156", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MOVE_ISSUES"}, {"id": 14157, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14157", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 14158, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14158", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 14159, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14159", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 14160, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14160", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 14161, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14161", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 14162, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14162", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 14163, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14163", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 14164, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14164", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__log-work-for-others"}, {"id": 14165, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14165", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__set-billable-hours"}, {"id": 14166, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14166", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-all-worklogs"}, {"id": 14167, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14167", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-issue-hours"}, {"id": 14405, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14405", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SET_ISSUE_SECURITY"}, {"id": 14482, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14482", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14834, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14834", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14835, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14835", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_ISSUES"}, {"id": 14168, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14168", "holder": {"type": "applicationRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 14169, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14169", "holder": {"type": "applicationRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 14170, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14170", "holder": {"type": "applicationRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 14171, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14171", "holder": {"type": "applicationRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 14172, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14172", "holder": {"type": "applicationRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 14173, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14173", "holder": {"type": "applicationRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 14174, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14174", "holder": {"type": "applicationRole"}, "permission": "CLOSE_ISSUES"}, {"id": 14175, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14175", "holder": {"type": "applicationRole"}, "permission": "CREATE_ISSUES"}, {"id": 14176, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14176", "holder": {"type": "applicationRole"}, "permission": "DELETE_ISSUES"}, {"id": 14177, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14177", "holder": {"type": "applicationRole"}, "permission": "EDIT_ISSUES"}, {"id": 14178, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14178", "holder": {"type": "applicationRole"}, "permission": "LINK_ISSUES"}, {"id": 14179, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14179", "holder": {"type": "applicationRole"}, "permission": "MODIFY_REPORTER"}, {"id": 14180, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14180", "holder": {"type": "applicationRole"}, "permission": "MOVE_ISSUES"}, {"id": 14181, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14181", "holder": {"type": "applicationRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 14182, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14182", "holder": {"type": "applicationRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 14183, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14183", "holder": {"type": "applicationRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 14184, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14184", "holder": {"type": "applicationRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 14185, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14185", "holder": {"type": "applicationRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 14186, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14186", "holder": {"type": "applicationRole"}, "permission": "ADD_COMMENTS"}, {"id": 14187, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14187", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 14188, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14188", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 14189, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14189", "holder": {"type": "applicationRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 14190, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14190", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 14191, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14191", "holder": {"type": "applicationRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 14192, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14192", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 14193, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14193", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 14194, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14194", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 14195, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14195", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 14196, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14196", "holder": {"type": "applicationRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 14197, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14197", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 14198, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14198", "holder": {"type": "applicationRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 14199, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14199", "holder": {"type": "applicationRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 14543, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14543", "holder": {"type": "applicationRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14712, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14712", "holder": {"type": "applicationRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14713, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10055/permission/14713", "holder": {"type": "applicationRole"}, "permission": "VIEW_ISSUES"}]}, "emitted_at": 1671213860530} +{"stream": "permission_schemes", "data": {"expand": "permissions,user,group,projectRole,field,all", "id": 0, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0", "name": "Default Permission Scheme", "description": "This is the default Permission Scheme. Any new projects that are created will be assigned this scheme.", "permissions": [{"id": 10004, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10004", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 10014, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10014", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "DELETE_ISSUES"}, {"id": 10018, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10018", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "MODIFY_REPORTER"}, {"id": 10020, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10020", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 10022, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10022", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 10025, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10025", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 10026, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10026", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 10028, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10028", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 10030, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10030", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 10301, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10301", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADD_COMMENTS"}, {"id": 10302, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10302", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 10303, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10303", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 10304, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10304", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 10305, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10305", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 10306, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10306", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CLOSE_ISSUES"}, {"id": 10307, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10307", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 10308, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10308", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ISSUES"}, {"id": 10309, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10309", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 10310, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10310", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 10311, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10311", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 10312, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10312", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ISSUES"}, {"id": 10313, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10313", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 10314, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10314", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 10315, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10315", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 10316, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10316", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 10317, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10317", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 10318, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10318", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ISSUES"}, {"id": 10319, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10319", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 10320, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10320", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 10321, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10321", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "LINK_ISSUES"}, {"id": 10322, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10322", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 10323, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10323", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 10324, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10324", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MODIFY_REPORTER"}, {"id": 10325, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10325", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MOVE_ISSUES"}, {"id": 10326, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10326", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 10327, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10327", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 10328, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10328", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SET_ISSUE_SECURITY"}, {"id": 10329, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10329", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 10330, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10330", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 10331, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10331", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 10332, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10332", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 10333, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10333", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 10464, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10464", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__log-work-for-others"}, {"id": 10465, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10465", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__set-billable-hours"}, {"id": 10466, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10466", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-all-worklogs"}, {"id": 10467, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10467", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-issue-hours"}, {"id": 14538, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/14538", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14722, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/14722", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14723, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/14723", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_ISSUES"}, {"id": 10005, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10005", "holder": {"type": "applicationRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 10006, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10006", "holder": {"type": "applicationRole"}, "permission": "CREATE_ISSUES"}, {"id": 10007, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10007", "holder": {"type": "applicationRole"}, "permission": "ADD_COMMENTS"}, {"id": 10008, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10008", "holder": {"type": "applicationRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 10009, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10009", "holder": {"type": "applicationRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 10010, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10010", "holder": {"type": "applicationRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 10011, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10011", "holder": {"type": "applicationRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 10012, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10012", "holder": {"type": "applicationRole"}, "permission": "LINK_ISSUES"}, {"id": 10013, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10013", "holder": {"type": "applicationRole"}, "permission": "EDIT_ISSUES"}, {"id": 10015, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10015", "holder": {"type": "applicationRole"}, "permission": "CLOSE_ISSUES"}, {"id": 10016, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10016", "holder": {"type": "applicationRole"}, "permission": "MOVE_ISSUES"}, {"id": 10017, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10017", "holder": {"type": "applicationRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 10019, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10019", "holder": {"type": "applicationRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 10021, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10021", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 10023, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10023", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 10024, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10024", "holder": {"type": "applicationRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 10027, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10027", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 10029, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10029", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 10031, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10031", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 10033, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10033", "holder": {"type": "applicationRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 10200, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10200", "holder": {"type": "applicationRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 10300, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/10300", "holder": {"type": "applicationRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 14599, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/14599", "holder": {"type": "applicationRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14600, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/14600", "holder": {"type": "applicationRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14601, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/0/permission/14601", "holder": {"type": "applicationRole"}, "permission": "VIEW_ISSUES"}]}, "emitted_at": 1671213860531} +{"stream": "permission_schemes", "data": {"expand": "permissions,user,group,projectRole,field,all", "id": 10059, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059", "name": "Default software scheme", "description": "Default scheme for Software projects.", "permissions": [{"id": 14415, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14415", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "DELETE_ISSUES"}, {"id": 14421, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14421", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 14424, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14424", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "MODIFY_REPORTER"}, {"id": 14426, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14426", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 14427, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14427", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 14429, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14429", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 14431, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14431", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 14434, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14434", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 14436, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14436", "holder": {"type": "projectRole", "parameter": "10002", "value": "10002", "expand": "projectRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 14441, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14441", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADD_COMMENTS"}, {"id": 14442, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14442", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 14443, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14443", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 14444, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14444", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 14445, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14445", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 14446, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14446", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CLOSE_ISSUES"}, {"id": 14447, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14447", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 14448, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14448", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ISSUES"}, {"id": 14449, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14449", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 14450, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14450", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 14451, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14451", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 14452, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14452", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ISSUES"}, {"id": 14453, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14453", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 14454, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14454", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 14455, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14455", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 14456, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14456", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 14457, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14457", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 14458, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14458", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ISSUES"}, {"id": 14459, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14459", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 14460, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14460", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 14461, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14461", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "LINK_ISSUES"}, {"id": 14462, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14462", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 14463, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14463", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 14464, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14464", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MODIFY_REPORTER"}, {"id": 14465, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14465", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MOVE_ISSUES"}, {"id": 14466, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14466", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 14467, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14467", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 14468, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14468", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SET_ISSUE_SECURITY"}, {"id": 14469, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14469", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 14470, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14470", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 14471, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14471", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 14472, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14472", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 14473, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14473", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 14474, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14474", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__log-work-for-others"}, {"id": 14475, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14475", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__set-billable-hours"}, {"id": 14476, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14476", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-all-worklogs"}, {"id": 14477, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14477", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-issue-hours"}, {"id": 14478, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14478", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14842, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14842", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14843, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14843", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_ISSUES"}, {"id": 14409, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14409", "holder": {"type": "applicationRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 14410, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14410", "holder": {"type": "applicationRole"}, "permission": "CREATE_ISSUES"}, {"id": 14411, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14411", "holder": {"type": "applicationRole"}, "permission": "EDIT_ISSUES"}, {"id": 14412, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14412", "holder": {"type": "applicationRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 14413, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14413", "holder": {"type": "applicationRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 14414, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14414", "holder": {"type": "applicationRole"}, "permission": "ADD_COMMENTS"}, {"id": 14416, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14416", "holder": {"type": "applicationRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 14417, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14417", "holder": {"type": "applicationRole"}, "permission": "CLOSE_ISSUES"}, {"id": 14418, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14418", "holder": {"type": "applicationRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 14419, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14419", "holder": {"type": "applicationRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 14420, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14420", "holder": {"type": "applicationRole"}, "permission": "LINK_ISSUES"}, {"id": 14422, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14422", "holder": {"type": "applicationRole"}, "permission": "MOVE_ISSUES"}, {"id": 14423, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14423", "holder": {"type": "applicationRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 14425, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14425", "holder": {"type": "applicationRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 14428, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14428", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 14430, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14430", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 14432, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14432", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 14433, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14433", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 14435, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14435", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 14437, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14437", "holder": {"type": "applicationRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 14438, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14438", "holder": {"type": "applicationRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 14439, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14439", "holder": {"type": "applicationRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 14440, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14440", "holder": {"type": "applicationRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 14539, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14539", "holder": {"type": "applicationRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14720, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14720", "holder": {"type": "applicationRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14721, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10059/permission/14721", "holder": {"type": "applicationRole"}, "permission": "VIEW_ISSUES"}]}, "emitted_at": 1671213860533} +{"stream": "permission_schemes", "data": {"expand": "permissions,user,group,projectRole,field,all", "id": 10003, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003", "name": "EX software permission scheme", "description": "The permission scheme for Jira Software Free. In Free, any registered user can access and administer this project.", "permissions": [{"id": 10544, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10544", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADD_COMMENTS"}, {"id": 10545, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10545", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 10546, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10546", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 10547, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10547", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 10548, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10548", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 10549, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10549", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CLOSE_ISSUES"}, {"id": 10550, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10550", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 10551, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10551", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "CREATE_ISSUES"}, {"id": 10552, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10552", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 10553, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10553", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 10554, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10554", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 10555, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10555", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_ISSUES"}, {"id": 10556, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10556", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 10557, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10557", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 10558, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10558", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 10559, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10559", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 10560, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10560", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 10561, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10561", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_ISSUES"}, {"id": 10562, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10562", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 10563, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10563", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 10564, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10564", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "LINK_ISSUES"}, {"id": 10565, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10565", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 10566, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10566", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 10567, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10567", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MODIFY_REPORTER"}, {"id": 10568, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10568", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "MOVE_ISSUES"}, {"id": 10569, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10569", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 10570, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10570", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 10571, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10571", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 10572, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10572", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 10573, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10573", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 10574, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10574", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 10575, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10575", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 10576, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10576", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__log-work-for-others"}, {"id": 10577, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10577", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__set-billable-hours"}, {"id": 10578, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10578", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-all-worklogs"}, {"id": 10579, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10579", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "io.tempo.jira__view-issue-hours"}, {"id": 14012, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/14012", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "SET_ISSUE_SECURITY"}, {"id": 14534, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/14534", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14730, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/14730", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14731, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/14731", "holder": {"type": "projectRole", "parameter": "10003", "value": "10003", "expand": "projectRole"}, "permission": "VIEW_ISSUES"}, {"id": 10580, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10580", "holder": {"type": "applicationRole"}, "permission": "ADMINISTER_PROJECTS"}, {"id": 10581, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10581", "holder": {"type": "applicationRole"}, "permission": "BROWSE_PROJECTS"}, {"id": 10582, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10582", "holder": {"type": "applicationRole"}, "permission": "MANAGE_SPRINTS_PERMISSION"}, {"id": 10583, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10583", "holder": {"type": "applicationRole"}, "permission": "VIEW_DEV_TOOLS"}, {"id": 10584, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10584", "holder": {"type": "applicationRole"}, "permission": "VIEW_READONLY_WORKFLOW"}, {"id": 10585, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10585", "holder": {"type": "applicationRole"}, "permission": "ASSIGNABLE_USER"}, {"id": 10586, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10586", "holder": {"type": "applicationRole"}, "permission": "CLOSE_ISSUES"}, {"id": 10587, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10587", "holder": {"type": "applicationRole"}, "permission": "CREATE_ISSUES"}, {"id": 10588, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10588", "holder": {"type": "applicationRole"}, "permission": "DELETE_ISSUES"}, {"id": 10589, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10589", "holder": {"type": "applicationRole"}, "permission": "EDIT_ISSUES"}, {"id": 10590, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10590", "holder": {"type": "applicationRole"}, "permission": "LINK_ISSUES"}, {"id": 10591, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10591", "holder": {"type": "applicationRole"}, "permission": "MODIFY_REPORTER"}, {"id": 10592, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10592", "holder": {"type": "applicationRole"}, "permission": "MOVE_ISSUES"}, {"id": 10593, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10593", "holder": {"type": "applicationRole"}, "permission": "RESOLVE_ISSUES"}, {"id": 10594, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10594", "holder": {"type": "applicationRole"}, "permission": "SCHEDULE_ISSUES"}, {"id": 10595, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10595", "holder": {"type": "applicationRole"}, "permission": "TRANSITION_ISSUES"}, {"id": 10596, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10596", "holder": {"type": "applicationRole"}, "permission": "MANAGE_WATCHERS"}, {"id": 10597, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10597", "holder": {"type": "applicationRole"}, "permission": "VIEW_VOTERS_AND_WATCHERS"}, {"id": 10598, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10598", "holder": {"type": "applicationRole"}, "permission": "ADD_COMMENTS"}, {"id": 10599, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10599", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_COMMENTS"}, {"id": 10600, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10600", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_COMMENTS"}, {"id": 10601, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10601", "holder": {"type": "applicationRole"}, "permission": "EDIT_ALL_COMMENTS"}, {"id": 10602, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10602", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_COMMENTS"}, {"id": 10603, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10603", "holder": {"type": "applicationRole"}, "permission": "CREATE_ATTACHMENTS"}, {"id": 10604, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10604", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_ATTACHMENTS"}, {"id": 10605, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10605", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_ATTACHMENTS"}, {"id": 10606, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10606", "holder": {"type": "applicationRole"}, "permission": "DELETE_ALL_WORKLOGS"}, {"id": 10607, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10607", "holder": {"type": "applicationRole"}, "permission": "DELETE_OWN_WORKLOGS"}, {"id": 10608, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10608", "holder": {"type": "applicationRole"}, "permission": "EDIT_ALL_WORKLOGS"}, {"id": 10609, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10609", "holder": {"type": "applicationRole"}, "permission": "EDIT_OWN_WORKLOGS"}, {"id": 10610, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10610", "holder": {"type": "applicationRole"}, "permission": "WORK_ON_ISSUES"}, {"id": 10611, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/10611", "holder": {"type": "applicationRole"}, "permission": "ASSIGN_ISSUES"}, {"id": 14595, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/14595", "holder": {"type": "applicationRole"}, "permission": "VIEW_AGGREGATED_DATA"}, {"id": 14608, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/14608", "holder": {"type": "applicationRole"}, "permission": "VIEW_PROJECTS"}, {"id": 14609, "self": "https://airbyteio.atlassian.net/rest/api/3/permissionscheme/10003/permission/14609", "holder": {"type": "applicationRole"}, "permission": "VIEW_ISSUES"}]}, "emitted_at": 1671213860534} +{"stream": "projects", "data": {"expand": "description,lead,issueTypes,url,projectKeys,permissions,insight", "self": "https://airbyteio.atlassian.net/rest/api/3/project/10000", "id": "10000", "key": "IT", "description": "", "name": "integration-tests", "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "isPrivate": false, "properties": {}}, "emitted_at": 1671213860637} +{"stream": "projects", "data": {"expand": "description,lead,issueTypes,url,projectKeys,permissions,insight", "self": "https://airbyteio.atlassian.net/rest/api/3/project/10016", "id": "10016", "key": "TESTKEY13", "description": "Test project 13 description", "name": "Test project 13", "avatarUrls": {"48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425", "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=small", "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=xsmall", "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=medium"}, "projectTypeKey": "software", "simplified": false, "style": "classic", "isPrivate": false, "properties": {}}, "emitted_at": 1671213860637} +{"stream": "project_avatars", "data": {"id": "10400", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/viewavatar?size=xsmall&avatarId=10400&avatarType=project", "24x24": "/secure/viewavatar?size=small&avatarId=10400&avatarType=project", "32x32": "/secure/viewavatar?size=medium&avatarId=10400&avatarType=project", "48x48": "/secure/viewavatar?avatarId=10400&avatarType=project"}}, "emitted_at": 1671213860974} +{"stream": "project_avatars", "data": {"id": "10401", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/viewavatar?size=xsmall&avatarId=10401&avatarType=project", "24x24": "/secure/viewavatar?size=small&avatarId=10401&avatarType=project", "32x32": "/secure/viewavatar?size=medium&avatarId=10401&avatarType=project", "48x48": "/secure/viewavatar?avatarId=10401&avatarType=project"}}, "emitted_at": 1671213860974} +{"stream": "project_avatars", "data": {"id": "10402", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/viewavatar?size=xsmall&avatarId=10402&avatarType=project", "24x24": "/secure/viewavatar?size=small&avatarId=10402&avatarType=project", "32x32": "/secure/viewavatar?size=medium&avatarId=10402&avatarType=project", "48x48": "/secure/viewavatar?avatarId=10402&avatarType=project"}}, "emitted_at": 1671213860974} +{"stream": "project_avatars", "data": {"id": "10403", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/viewavatar?size=xsmall&avatarId=10403&avatarType=project", "24x24": "/secure/viewavatar?size=small&avatarId=10403&avatarType=project", "32x32": "/secure/viewavatar?size=medium&avatarId=10403&avatarType=project", "48x48": "/secure/viewavatar?avatarId=10403&avatarType=project"}}, "emitted_at": 1671213860975} +{"stream": "project_avatars", "data": {"id": "10404", "isSystemAvatar": true, "isSelected": false, "isDeletable": false, "urls": {"16x16": "/secure/viewavatar?size=xsmall&avatarId=10404&avatarType=project", "24x24": "/secure/viewavatar?size=small&avatarId=10404&avatarType=project", "32x32": "/secure/viewavatar?size=medium&avatarId=10404&avatarType=project", "48x48": "/secure/viewavatar?avatarId=10404&avatarType=project"}}, "emitted_at": 1671213860975} +{"stream": "project_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/projectCategory/10000", "id": "10000", "description": "Category 1", "name": "Category 1"}, "emitted_at": 1671213861437} +{"stream": "project_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/projectCategory/10001", "id": "10001", "description": "Category 2", "name": "Category 2"}, "emitted_at": 1671213861437} +{"stream": "project_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/projectCategory/10002", "id": "10002", "description": "Test Project Category 0", "name": "Test category 0"}, "emitted_at": 1671213861438} +{"stream": "project_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/projectCategory/10003", "id": "10003", "description": "Test Project Category 1", "name": "Test category 1"}, "emitted_at": 1671213861438} +{"stream": "project_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/projectCategory/10004", "id": "10004", "description": "Test Project Category 2", "name": "Test category 2"}, "emitted_at": 1671213861438} +{"stream": "project_components", "data": {"componentBean": {"self": "https://airbyteio.atlassian.net/rest/api/3/component/10047", "id": "10047", "name": "Component 0", "description": "This is a Jira component", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_LEAD", "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "realAssigneeType": "PROJECT_LEAD", "realAssignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "isAssigneeTypeValid": true, "project": "IT", "projectId": 10000}, "issueCount": 0, "realAssignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "isAssigneeTypeValid": true, "realAssigneeType": "PROJECT_LEAD", "name": "Component 0", "id": "10047", "description": "This is a Jira component", "self": "https://airbyteio.atlassian.net/rest/api/3/component/10047", "projectId": 10000, "project": "IT", "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_LEAD", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}}, "emitted_at": 1671213861813} +{"stream": "project_components", "data": {"componentBean": {"self": "https://airbyteio.atlassian.net/rest/api/3/component/10000", "id": "10000", "name": "Component 1", "description": "Component 1", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_DEFAULT", "realAssigneeType": "PROJECT_DEFAULT", "isAssigneeTypeValid": false, "project": "IT", "projectId": 10000}, "issueCount": 0, "isAssigneeTypeValid": false, "realAssigneeType": "PROJECT_DEFAULT", "name": "Component 1", "id": "10000", "description": "Component 1", "self": "https://airbyteio.atlassian.net/rest/api/3/component/10000", "projectId": 10000, "project": "IT", "assigneeType": "PROJECT_DEFAULT", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}}, "emitted_at": 1671213861814} +{"stream": "project_components", "data": {"componentBean": {"self": "https://airbyteio.atlassian.net/rest/api/3/component/10048", "id": "10048", "name": "Component 2", "description": "This is a Jira component", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_LEAD", "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "realAssigneeType": "PROJECT_LEAD", "realAssignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "isAssigneeTypeValid": true, "project": "IT", "projectId": 10000}, "issueCount": 0, "realAssignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "isAssigneeTypeValid": true, "realAssigneeType": "PROJECT_LEAD", "name": "Component 2", "id": "10048", "description": "This is a Jira component", "self": "https://airbyteio.atlassian.net/rest/api/3/component/10048", "projectId": 10000, "project": "IT", "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_LEAD", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}}, "emitted_at": 1671213861814} +{"stream": "project_components", "data": {"componentBean": {"self": "https://airbyteio.atlassian.net/rest/api/3/component/10049", "id": "10049", "name": "Component 3", "description": "This is a Jira component", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_LEAD", "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "realAssigneeType": "PROJECT_LEAD", "realAssignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "isAssigneeTypeValid": true, "project": "IT", "projectId": 10000}, "issueCount": 2, "realAssignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "isAssigneeTypeValid": true, "realAssigneeType": "PROJECT_LEAD", "name": "Component 3", "id": "10049", "description": "This is a Jira component", "self": "https://airbyteio.atlassian.net/rest/api/3/component/10049", "projectId": 10000, "project": "IT", "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_LEAD", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}}, "emitted_at": 1671213861815} +{"stream": "project_components", "data": {"componentBean": {"self": "https://airbyteio.atlassian.net/rest/api/3/component/10065", "id": "10065", "name": "Component 0", "description": "This is a Jira component", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_LEAD", "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "realAssigneeType": "PROJECT_LEAD", "realAssignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "isAssigneeTypeValid": true, "project": "TESTKEY13", "projectId": 10016}, "issueCount": 1, "isAssigneeTypeValid": true, "realAssigneeType": "PROJECT_LEAD", "realAssignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "description": "This is a Jira component", "name": "Component 0", "id": "10065", "projectId": 10016, "project": "TESTKEY13", "assignee": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "assigneeType": "PROJECT_LEAD", "lead": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true}, "self": "https://airbyteio.atlassian.net/rest/api/3/component/10065"}, "emitted_at": 1671213861995} +{"stream": "project_email", "data": {"emailAddress": "jira@airbyteio.atlassian.net", "projectId": "10000"}, "emitted_at": 1671213862335} +{"stream": "project_email", "data": {"emailAddress": "jira@airbyteio.atlassian.net", "projectId": "10016"}, "emitted_at": 1671213862466} +{"stream": "project_types", "data": {"key": "product_discovery", "formattedKey": "Product Discovery", "descriptionI18nKey": "jira.project.type.polaris.description", "icon": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJMYXllcl8yIj4NCgk8cGF0aCBzdHlsZT0iZmlsbDojRjc5MjMyOyIgZD0iTTE1MCwwQzY2LjY2NywwLDAsNjYuNjY3LDAsMTUwczY2LjY2NywxNTAsMTUwLDE1MHMxNTAtNjYuNjY3LDE1MC0xNTBTMjMzLjMzMywwLDE1MCwweg0KCQkgTTEzNi42NjcsMTc4LjMzM0wxMjUsMTkwbC00MS42NjctNDBMOTUsMTM4LjMzM2wzMC0zMEwxMzYuNjY3LDEyMGwtMzAsMzBMMTM2LjY2NywxNzguMzMzeiBNMjA1LDE2MS42NjdsLTMwLDMwTDE2My4zMzMsMTgwDQoJCWwzMC0zMGwtMzAtMzBMMTc1LDEwOC4zMzNMMjE2LjY2NywxNTBMMjA1LDE2MS42Njd6Ii8+DQo8L2c+DQo8Zz4NCgk8cG9seWdvbiBzdHlsZT0iZmlsbDojRkZGRkZGOyIgcG9pbnRzPSIxNzUsMTkxLjY2NyAyMDUsMTYxLjY2NyAyMTYuNjY3LDE1MCAxNzUsMTA4LjMzMyAxNjMuMzMzLDEyMCAxOTMuMzMzLDE1MCAxNjMuMzMzLDE4MCAJIi8+DQoJPHBvbHlnb24gc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIHBvaW50cz0iMTI1LDEwOC4zMzMgOTUsMTM4LjMzMyA4My4zMzMsMTUwIDEyNSwxOTAgMTM2LjY2NywxNzguMzMzIDEwNi42NjcsMTUwIDEzNi42NjcsMTIwIAkiLz4NCjwvZz4NCjwvc3ZnPg0K", "color": "#F5A623"}, "emitted_at": 1671213863411} +{"stream": "project_types", "data": {"key": "software", "formattedKey": "Software", "descriptionI18nKey": "jira.project.type.software.description", "icon": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJMYXllcl8yIj4NCgk8cGF0aCBzdHlsZT0iZmlsbDojRjc5MjMyOyIgZD0iTTE1MCwwQzY2LjY2NywwLDAsNjYuNjY3LDAsMTUwczY2LjY2NywxNTAsMTUwLDE1MHMxNTAtNjYuNjY3LDE1MC0xNTBTMjMzLjMzMywwLDE1MCwweg0KCQkgTTEzNi42NjcsMTc4LjMzM0wxMjUsMTkwbC00MS42NjctNDBMOTUsMTM4LjMzM2wzMC0zMEwxMzYuNjY3LDEyMGwtMzAsMzBMMTM2LjY2NywxNzguMzMzeiBNMjA1LDE2MS42NjdsLTMwLDMwTDE2My4zMzMsMTgwDQoJCWwzMC0zMGwtMzAtMzBMMTc1LDEwOC4zMzNMMjE2LjY2NywxNTBMMjA1LDE2MS42Njd6Ii8+DQo8L2c+DQo8Zz4NCgk8cG9seWdvbiBzdHlsZT0iZmlsbDojRkZGRkZGOyIgcG9pbnRzPSIxNzUsMTkxLjY2NyAyMDUsMTYxLjY2NyAyMTYuNjY3LDE1MCAxNzUsMTA4LjMzMyAxNjMuMzMzLDEyMCAxOTMuMzMzLDE1MCAxNjMuMzMzLDE4MCAJIi8+DQoJPHBvbHlnb24gc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIHBvaW50cz0iMTI1LDEwOC4zMzMgOTUsMTM4LjMzMyA4My4zMzMsMTUwIDEyNSwxOTAgMTM2LjY2NywxNzguMzMzIDEwNi42NjcsMTUwIDEzNi42NjcsMTIwIAkiLz4NCjwvZz4NCjwvc3ZnPg0K", "color": "#F5A623"}, "emitted_at": 1671213863411} +{"stream": "project_types", "data": {"key": "service_desk", "formattedKey": "Service Desk", "descriptionI18nKey": "jira.project.type.servicedesk.description.jsm", "icon": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJMYXllcl8yIj4NCgk8Zz4NCgkJPHJlY3QgeD0iMTAwIiB5PSIxMDAiIHN0eWxlPSJmaWxsOiM2N0FCNDk7IiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjY2LjY2NyIvPg0KCQk8cGF0aCBzdHlsZT0iZmlsbDojNjdBQjQ5OyIgZD0iTTE1MCwwQzY2LjY2NywwLDAsNjYuNjY3LDAsMTUwczY2LjY2NywxNTAsMTUwLDE1MHMxNTAtNjYuNjY3LDE1MC0xNTBTMjMzLjMzMywwLDE1MCwweg0KCQkJIE0yMTYuNjY3LDEwMHY2Ni42Njd2MTYuNjY3aC01MFYyMDBIMjAwdjE2LjY2N0gxMDBWMjAwaDMzLjMzM3YtMTYuNjY3aC01MHYtMTYuNjY3VjEwMFY4My4zMzNoMTMzLjMzM1YxMDB6Ii8+DQoJPC9nPg0KPC9nPg0KPHBhdGggc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIGQ9Ik0yMTYuNjY3LDE4My4zMzN2LTE2LjY2N1YxMDBWODMuMzMzSDgzLjMzM1YxMDB2NjYuNjY3djE2LjY2N2g1MFYyMDBIMTAwdjE2LjY2N2gxMDBWMjAwaC0zMy4zMzMNCgl2LTE2LjY2N0gyMTYuNjY3eiBNMTAwLDE2Ni42NjdWMTAwaDEwMHY2Ni42NjdIMTAweiIvPg0KPC9zdmc+DQo=", "color": "#67AB49"}, "emitted_at": 1671213863411} +{"stream": "project_types", "data": {"key": "business", "formattedKey": "Business", "descriptionI18nKey": "jira.project.type.business.description", "icon": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJMYXllcl8yIj4NCgk8cGF0aCBzdHlsZT0iZmlsbDojMzU3MkIwOyIgZD0iTTE1MCwwQzY2LjY2NywwLDAsNjYuNjY3LDAsMTUwczY2LjY2NywxNTAsMTUwLDE1MHMxNTAtNjYuNjY3LDE1MC0xNTBTMjMzLjMzMywwLDE1MCwweg0KCQkgTTE2Ni42NjcsMjE2LjY2N0g4My4zMzNWMjAwaDgzLjMzM1YyMTYuNjY3eiBNMjE2LjY2NywxODMuMzMzSDgzLjMzM3YtMTYuNjY3aDEzMy4zMzNWMTgzLjMzM3ogTTIxNi42NjcsMTUwSDgzLjMzM3YtMTYuNjY3DQoJCWgxMzMuMzMzVjE1MHogTTIxNi42NjcsMTE2LjY2N0g4My4zMzNWMTAwaDEzMy4zMzNWMTE2LjY2N3oiLz4NCjwvZz4NCjxyZWN0IHg9IjgzLjMzMyIgeT0iMjAwIiBzdHlsZT0iZmlsbDojRkZGRkZGOyIgd2lkdGg9IjgzLjMzMyIgaGVpZ2h0PSIxNi42NjciLz4NCjxyZWN0IHg9IjgzLjMzMyIgeT0iMTY2LjY2NyIgc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIHdpZHRoPSIxMzMuMzMzIiBoZWlnaHQ9IjE2LjY2NyIvPg0KPHJlY3QgeD0iODMuMzMzIiB5PSIxMzMuMzMzIiBzdHlsZT0iZmlsbDojRkZGRkZGOyIgd2lkdGg9IjEzMy4zMzMiIGhlaWdodD0iMTYuNjY3Ii8+DQo8cmVjdCB4PSI4My4zMzMiIHk9IjEwMCIgc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIHdpZHRoPSIxMzMuMzMzIiBoZWlnaHQ9IjE2LjY2NyIvPg0KPC9zdmc+DQo=", "color": "#1D8832"}, "emitted_at": 1671213863411} +{"stream": "project_versions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/version/10000", "id": "10000", "description": "Version 1", "name": "Version 1", "archived": false, "released": false, "startDate": "2021-02-18", "releaseDate": "2021-02-25", "overdue": true, "userStartDate": "17/Feb/21", "userReleaseDate": "24/Feb/21", "projectId": 10000}, "emitted_at": 1671213863745} +{"stream": "project_versions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/version/10040", "id": "10040", "description": "An excellent version", "name": "New Version 0", "archived": false, "released": true, "releaseDate": "2010-07-06", "userReleaseDate": "05/Jul/10", "projectId": 10000}, "emitted_at": 1671213863746} +{"stream": "project_versions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/version/10041", "id": "10041", "description": "An excellent version", "name": "New Version 1", "archived": false, "released": true, "releaseDate": "2010-07-06", "userReleaseDate": "05/Jul/10", "projectId": 10000}, "emitted_at": 1671213863746} +{"stream": "project_versions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/version/10042", "id": "10042", "description": "An excellent version", "name": "New Version 2", "archived": false, "released": true, "releaseDate": "2010-07-06", "userReleaseDate": "05/Jul/10", "projectId": 10000}, "emitted_at": 1671213863746} +{"stream": "project_versions", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/version/10043", "id": "10043", "description": "An excellent version", "name": "New Version 3", "archived": false, "released": true, "releaseDate": "2010-07-06", "userReleaseDate": "05/Jul/10", "projectId": 10000}, "emitted_at": 1671213863746} +{"stream": "screens", "data": {"id": 1, "name": "Default Screen", "description": "Allows to update all system fields."}, "emitted_at": 1671213864146} +{"stream": "screens", "data": {"id": 2, "name": "Workflow Screen", "description": "This screen is used in the workflow and enables you to assign issues"}, "emitted_at": 1671213864146} +{"stream": "screens", "data": {"id": 3, "name": "Resolve Issue Screen", "description": "Allows to set resolution, change fix versions and assign an issue."}, "emitted_at": 1671213864146} +{"stream": "screens", "data": {"id": 10000, "name": "IT: Scrum Default Issue Screen", "description": ""}, "emitted_at": 1671213864147} +{"stream": "screens", "data": {"id": 10001, "name": "IT: Scrum Bug Screen", "description": ""}, "emitted_at": 1671213864147} +{"stream": "screen_tabs", "data": {"id": 10000, "name": "Field Tab"}, "emitted_at": 1671213864683} +{"stream": "screen_tabs", "data": {"id": 10001, "name": "Field Tab"}, "emitted_at": 1671213864832} +{"stream": "screen_tabs", "data": {"id": 10002, "name": "Field Tab"}, "emitted_at": 1671213864997} +{"stream": "screen_tabs", "data": {"id": 10003, "name": "Field Tab"}, "emitted_at": 1671213865137} +{"stream": "screen_tabs", "data": {"id": 10004, "name": "Field Tab"}, "emitted_at": 1671213865283} +{"stream": "screen_schemes", "data": {"id": 1, "name": "Default Screen Scheme", "description": "Default Screen Scheme", "screens": {"default": 1}}, "emitted_at": 1671213885385} +{"stream": "screen_schemes", "data": {"id": 10000, "name": "IT: Scrum Default Screen Scheme", "description": "", "screens": {"default": 10000}}, "emitted_at": 1671213885385} +{"stream": "screen_schemes", "data": {"id": 10001, "name": "IT: Scrum Bug Screen Scheme", "description": "", "screens": {"default": 10001}}, "emitted_at": 1671213885385} +{"stream": "screen_schemes", "data": {"id": 10002, "name": "P2: Scrum Default Screen Scheme", "description": "", "screens": {"default": 10002}}, "emitted_at": 1671213885386} +{"stream": "screen_schemes", "data": {"id": 10003, "name": "P2: Scrum Bug Screen Scheme", "description": "", "screens": {"default": 10003}}, "emitted_at": 1671213885386} +{"stream": "sprints", "data": {"id": 2, "self": "https://airbyteio.atlassian.net/rest/agile/1.0/sprint/2", "state": "active", "name": "IT Sprint 1", "startDate": "2022-05-17T11:25:59.072Z", "endDate": "2022-05-31T11:25:00.000Z", "originBoardId": 1, "goal": "Deliver results"}, "emitted_at": 1671213885935} +{"stream": "sprint_issues", "data": {"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "2-10012", "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10012", "key": "IT-6", "fields": {"customfield_10016": null, "updated": "2022-05-17T04:26:21.613-0700", "created": "2021-03-11T06:14:18.085-0800", "status": {"self": "https://airbyteio.atlassian.net/rest/api/2/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/2/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}}, "issueId": "10012", "sprintId": 2, "created": "2021-03-11T06:14:18.085-0800", "updated": "2022-05-17T04:26:21.613-0700"}, "emitted_at": 1671213886951} +{"stream": "sprint_issues", "data": {"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "2-10000", "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10000", "key": "IT-1", "fields": {"customfield_10016": null, "updated": "2022-05-17T04:26:28.885-0700", "created": "2020-12-07T06:12:17.863-0800", "status": {"self": "https://airbyteio.atlassian.net/rest/api/2/status/10001", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "Done", "id": "10001", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/2/statuscategory/3", "id": 3, "key": "done", "colorName": "green", "name": "Done"}}, "customfield_10026": null}, "issueId": "10000", "sprintId": 2, "created": "2020-12-07T06:12:17.863-0800", "updated": "2022-05-17T04:26:28.885-0700"}, "emitted_at": 1671213886952} +{"stream": "time_tracking", "data": {"key": "JIRA", "name": "JIRA provided time tracking"}, "emitted_at": 1671213887275} +{"stream": "time_tracking", "data": {"key": "is.origo.jira.tempo-plugin__timetracking-provider", "name": "Tempo Timesheets"}, "emitted_at": 1671213887275} +{"stream": "users", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "accountType": "atlassian", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "locale": "en_US"}, "emitted_at": 1671213887490} +{"stream": "users", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=557058:f58131cb-b67d-43c7-b30d-6b58d40bd077", "accountId": "557058:f58131cb-b67d-43c7-b30d-6b58d40bd077", "accountType": "app", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", "24x24": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", "16x16": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", "32x32": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png"}, "displayName": "Automation for Jira", "active": true}, "emitted_at": 1671213887491} +{"stream": "users", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5d53f3cbc6b9320d9ea5bdc2", "accountId": "5d53f3cbc6b9320d9ea5bdc2", "accountType": "app", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/40cff14f727dbf6d865576d575c6bdd2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJO-4.png", "24x24": "https://secure.gravatar.com/avatar/40cff14f727dbf6d865576d575c6bdd2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJO-4.png", "16x16": "https://secure.gravatar.com/avatar/40cff14f727dbf6d865576d575c6bdd2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJO-4.png", "32x32": "https://secure.gravatar.com/avatar/40cff14f727dbf6d865576d575c6bdd2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJO-4.png"}, "displayName": "Jira Outlook", "active": true}, "emitted_at": 1671213887491} +{"stream": "users", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=557058:0867a421-a9ee-4659-801a-bc0ee4a4487e", "accountId": "557058:0867a421-a9ee-4659-801a-bc0ee4a4487e", "accountType": "app", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/ab3787cd0c16633ae050dff9d5ab15fc?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FS-0.png", "24x24": "https://secure.gravatar.com/avatar/ab3787cd0c16633ae050dff9d5ab15fc?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FS-0.png", "16x16": "https://secure.gravatar.com/avatar/ab3787cd0c16633ae050dff9d5ab15fc?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FS-0.png", "32x32": "https://secure.gravatar.com/avatar/ab3787cd0c16633ae050dff9d5ab15fc?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FS-0.png"}, "displayName": "Slack", "active": true}, "emitted_at": 1671213887491} +{"stream": "users", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=557058:950f9f5b-3d6d-4e1d-954a-21367ae9ac75", "accountId": "557058:950f9f5b-3d6d-4e1d-954a-21367ae9ac75", "accountType": "app", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/726e9dfb98dfab7231aca0392486818d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJW-2.png", "24x24": "https://secure.gravatar.com/avatar/726e9dfb98dfab7231aca0392486818d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJW-2.png", "16x16": "https://secure.gravatar.com/avatar/726e9dfb98dfab7231aca0392486818d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJW-2.png", "32x32": "https://secure.gravatar.com/avatar/726e9dfb98dfab7231aca0392486818d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJW-2.png"}, "displayName": "Jira Service Management Widget", "active": true}, "emitted_at": 1671213887491} +{"stream": "users_groups_detailed", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", "accountId": "5fc9e78d2730d800760becc4", "accountType": "atlassian", "emailAddress": "integration-test@airbyte.io", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png"}, "displayName": "integration test", "active": true, "timeZone": "America/Los_Angeles", "locale": "en_US", "groups": {"size": 27, "items": [{"name": "administrators", "groupId": "0ca6e087-7a61-4986-a269-98fe268854a1", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=0ca6e087-7a61-4986-a269-98fe268854a1"}, {"name": "confluence-users", "groupId": "38d808e9-113f-45c4-817b-099e953b687a", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=38d808e9-113f-45c4-817b-099e953b687a"}, {"name": "integration-test-group", "groupId": "5f1ec851-f8da-4f90-ab42-8dc50a9f99d8", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=5f1ec851-f8da-4f90-ab42-8dc50a9f99d8"}, {"name": "jira-administrators", "groupId": "58582f33-a5a6-43b9-92a6-ff0bbacb49ae", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=58582f33-a5a6-43b9-92a6-ff0bbacb49ae"}, {"name": "jira-software-users", "groupId": "4452b254-035d-469a-a422-1f4666dce50e", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e"}, {"name": "jira-users", "groupId": "2513da2e-08cf-4415-9bcd-cbbd32fa227d", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=2513da2e-08cf-4415-9bcd-cbbd32fa227d"}, {"name": "site-admins", "groupId": "76dad095-fc1a-467a-88b4-fde534220985", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=76dad095-fc1a-467a-88b4-fde534220985"}, {"name": "Test group 0", "groupId": "ee8d15d1-6462-406a-b0a6-8065b7e4cdd7", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=ee8d15d1-6462-406a-b0a6-8065b7e4cdd7"}, {"name": "Test group 1", "groupId": "bda1faf1-1a1a-42d1-82e4-a428c8b8f67c", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=bda1faf1-1a1a-42d1-82e4-a428c8b8f67c"}, {"name": "Test group 10", "groupId": "e9f74708-e33c-4158-919d-6457f50c6e74", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=e9f74708-e33c-4158-919d-6457f50c6e74"}, {"name": "Test group 11", "groupId": "b0e6d76f-701a-4208-a88d-4478f242edde", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=b0e6d76f-701a-4208-a88d-4478f242edde"}, {"name": "Test group 12", "groupId": "dddc24a0-ef00-407e-abef-5a660b6f55cf", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=dddc24a0-ef00-407e-abef-5a660b6f55cf"}, {"name": "Test group 13", "groupId": "dbe4af74-8387-4b08-843b-86af78dd738e", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=dbe4af74-8387-4b08-843b-86af78dd738e"}, {"name": "Test group 14", "groupId": "d4570a20-38d8-44cc-a63b-0924d0d0d0ff", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=d4570a20-38d8-44cc-a63b-0924d0d0d0ff"}, {"name": "Test group 15", "groupId": "87bde5c0-7231-44a7-88b5-421da2ab8052", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=87bde5c0-7231-44a7-88b5-421da2ab8052"}, {"name": "Test group 16", "groupId": "538b6aa2-bf57-402f-93c0-c2e2d68b7155", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=538b6aa2-bf57-402f-93c0-c2e2d68b7155"}, {"name": "Test group 17", "groupId": "022bc924-ac57-442d-80c9-df042b73ad87", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=022bc924-ac57-442d-80c9-df042b73ad87"}, {"name": "Test group 18", "groupId": "bbfc6fc9-96db-4e66-88f4-c55b08298272", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=bbfc6fc9-96db-4e66-88f4-c55b08298272"}, {"name": "Test group 19", "groupId": "3c4fef5d-9721-4f20-9a68-346d222de3cf", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=3c4fef5d-9721-4f20-9a68-346d222de3cf"}, {"name": "Test group 2", "groupId": "5ddb26f1-2d31-414a-ac34-b2d6de38805d", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=5ddb26f1-2d31-414a-ac34-b2d6de38805d"}, {"name": "Test group 3", "groupId": "638aa1ad-8707-4d56-9361-f5959b6c4785", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=638aa1ad-8707-4d56-9361-f5959b6c4785"}, {"name": "Test group 4", "groupId": "532554e0-43be-4eca-9186-b417dcf38547", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=532554e0-43be-4eca-9186-b417dcf38547"}, {"name": "Test group 5", "groupId": "6b663734-85b6-4185-8fb2-9ac27709b3aa", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=6b663734-85b6-4185-8fb2-9ac27709b3aa"}, {"name": "Test group 6", "groupId": "2d4af5cf-cd34-4e78-9445-abc000cdd5cc", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=2d4af5cf-cd34-4e78-9445-abc000cdd5cc"}, {"name": "Test group 7", "groupId": "e8a97909-d807-4f79-8548-1f2c156ae6f0", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=e8a97909-d807-4f79-8548-1f2c156ae6f0"}, {"name": "Test group 8", "groupId": "3ee851e7-6688-495a-a6f6-737e85a23878", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=3ee851e7-6688-495a-a6f6-737e85a23878"}, {"name": "Test group 9", "groupId": "af27d0b1-4378-443f-9a6d-f878848b144a", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=af27d0b1-4378-443f-9a6d-f878848b144a"}]}, "applicationRoles": {"size": 1, "items": [{"key": "jira-software", "name": "Jira Software"}]}, "expand": "groups,applicationRoles"}, "emitted_at": 1671213887817} +{"stream": "users_groups_detailed", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=557058:f58131cb-b67d-43c7-b30d-6b58d40bd077", "accountId": "557058:f58131cb-b67d-43c7-b30d-6b58d40bd077", "accountType": "app", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", "24x24": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", "16x16": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", "32x32": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png"}, "displayName": "Automation for Jira", "active": true, "timeZone": "America/Los_Angeles", "locale": "en_US", "groups": {"size": 2, "items": [{"name": "atlassian-addons-admin", "groupId": "90b9ffb1-ed26-4b5e-af59-8f684900ce83", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=90b9ffb1-ed26-4b5e-af59-8f684900ce83"}, {"name": "jira-software-users", "groupId": "4452b254-035d-469a-a422-1f4666dce50e", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e"}]}, "applicationRoles": {"size": 1, "items": [{"key": "jira-software", "name": "Jira Software"}]}, "expand": "groups,applicationRoles"}, "emitted_at": 1671213887964} +{"stream": "users_groups_detailed", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5d53f3cbc6b9320d9ea5bdc2", "accountId": "5d53f3cbc6b9320d9ea5bdc2", "accountType": "app", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/40cff14f727dbf6d865576d575c6bdd2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJO-4.png", "24x24": "https://secure.gravatar.com/avatar/40cff14f727dbf6d865576d575c6bdd2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJO-4.png", "16x16": "https://secure.gravatar.com/avatar/40cff14f727dbf6d865576d575c6bdd2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJO-4.png", "32x32": "https://secure.gravatar.com/avatar/40cff14f727dbf6d865576d575c6bdd2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJO-4.png"}, "displayName": "Jira Outlook", "active": true, "timeZone": "America/Los_Angeles", "locale": "en_US", "groups": {"size": 1, "items": [{"name": "jira-software-users", "groupId": "4452b254-035d-469a-a422-1f4666dce50e", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e"}]}, "applicationRoles": {"size": 1, "items": [{"key": "jira-software", "name": "Jira Software"}]}, "expand": "groups,applicationRoles"}, "emitted_at": 1671213888132} +{"stream": "users_groups_detailed", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=557058:0867a421-a9ee-4659-801a-bc0ee4a4487e", "accountId": "557058:0867a421-a9ee-4659-801a-bc0ee4a4487e", "accountType": "app", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/ab3787cd0c16633ae050dff9d5ab15fc?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FS-0.png", "24x24": "https://secure.gravatar.com/avatar/ab3787cd0c16633ae050dff9d5ab15fc?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FS-0.png", "16x16": "https://secure.gravatar.com/avatar/ab3787cd0c16633ae050dff9d5ab15fc?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FS-0.png", "32x32": "https://secure.gravatar.com/avatar/ab3787cd0c16633ae050dff9d5ab15fc?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FS-0.png"}, "displayName": "Slack", "active": true, "timeZone": "America/Los_Angeles", "locale": "en_US", "groups": {"size": 1, "items": [{"name": "jira-software-users", "groupId": "4452b254-035d-469a-a422-1f4666dce50e", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e"}]}, "applicationRoles": {"size": 1, "items": [{"key": "jira-software", "name": "Jira Software"}]}, "expand": "groups,applicationRoles"}, "emitted_at": 1671213888280} +{"stream": "users_groups_detailed", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=557058:950f9f5b-3d6d-4e1d-954a-21367ae9ac75", "accountId": "557058:950f9f5b-3d6d-4e1d-954a-21367ae9ac75", "accountType": "app", "avatarUrls": {"48x48": "https://secure.gravatar.com/avatar/726e9dfb98dfab7231aca0392486818d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJW-2.png", "24x24": "https://secure.gravatar.com/avatar/726e9dfb98dfab7231aca0392486818d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJW-2.png", "16x16": "https://secure.gravatar.com/avatar/726e9dfb98dfab7231aca0392486818d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJW-2.png", "32x32": "https://secure.gravatar.com/avatar/726e9dfb98dfab7231aca0392486818d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FJW-2.png"}, "displayName": "Jira Service Management Widget", "active": true, "timeZone": "America/Los_Angeles", "locale": "en_US", "groups": {"size": 2, "items": [{"name": "atlassian-addons-admin", "groupId": "90b9ffb1-ed26-4b5e-af59-8f684900ce83", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=90b9ffb1-ed26-4b5e-af59-8f684900ce83"}, {"name": "jira-software-users", "groupId": "4452b254-035d-469a-a422-1f4666dce50e", "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e"}]}, "applicationRoles": {"size": 1, "items": [{"key": "jira-software", "name": "Jira Software"}]}, "expand": "groups,applicationRoles"}, "emitted_at": 1671213888426} +{"stream": "workflows", "data": {"id": {"name": "Builds Workflow", "entityId": "Builds Workflow"}, "description": "Builds Workflow", "created": "1969-12-31T16:00:00.000-0800", "updated": "1969-12-31T16:00:00.000-0800"}, "emitted_at": 1671213894423} +{"stream": "workflows", "data": {"id": {"name": "classic default workflow", "entityId": "385bb764-dfb6-89a7-2e43-a25bdd0cbaf4"}, "description": "The classic JIRA default workflow", "created": "2020-12-03T23:41:38.951-0800", "updated": "2020-12-03T23:41:57.343-0800"}, "emitted_at": 1671213894423} +{"stream": "workflows", "data": {"id": {"name": "jira", "entityId": "jira"}, "description": "The default Jira workflow.", "created": "1969-12-31T16:00:00.000-0800", "updated": "1969-12-31T16:00:00.000-0800"}, "emitted_at": 1671213894423} +{"stream": "workflows", "data": {"id": {"name": "Software Simplified Workflow for Project EX", "entityId": "9beeb4c2-7947-4353-8db5-3e13f40b9f87"}, "description": "Generated by JIRA Software version 1001.0.0-SNAPSHOT. This workflow is managed internally by Jira Software. Do not manually modify this workflow.", "created": "2021-02-04T10:49:47.874-0800", "updated": "2021-02-04T10:49:47.874-0800"}, "emitted_at": 1671213894424} +{"stream": "workflows", "data": {"id": {"name": "Software Simplified Workflow for Project IT", "entityId": "6c11bb77-8f4b-463d-8d37-dfc153b71df4"}, "description": "Generated by JIRA Software version 1001.0.0-SNAPSHOT. This workflow is managed internally by Jira Software. Do not manually modify this workflow.", "created": "2020-12-03T23:45:34.235-0800", "updated": "2020-12-03T23:45:34.235-0800"}, "emitted_at": 1671213894424} +{"stream": "workflow_schemes", "data": {"id": 10000, "name": "classic", "description": "classic", "defaultWorkflow": "classic default workflow", "issueTypeMappings": {}, "self": "https://airbyteio.atlassian.net/rest/api/3/workflowscheme/10000"}, "emitted_at": 1671213894904} +{"stream": "workflow_schemes", "data": {"id": 10001, "name": "IT: Software Simplified Workflow Scheme", "description": "Generated by JIRA Software version 1001.0.0-SNAPSHOT. This workflow scheme is managed internally by Jira Software. Do not manually modify this workflow scheme.", "defaultWorkflow": "Software Simplified Workflow for Project IT", "issueTypeMappings": {}, "self": "https://airbyteio.atlassian.net/rest/api/3/workflowscheme/10001"}, "emitted_at": 1671213894904} +{"stream": "workflow_schemes", "data": {"id": 10002, "name": "P2: Software Simplified Workflow Scheme", "description": "Generated by JIRA Software version 1001.0.0-SNAPSHOT. This workflow scheme is managed internally by Jira Software. Do not manually modify this workflow scheme.", "defaultWorkflow": "Software Simplified Workflow for Project P2", "issueTypeMappings": {}, "self": "https://airbyteio.atlassian.net/rest/api/3/workflowscheme/10002"}, "emitted_at": 1671213894905} +{"stream": "workflow_schemes", "data": {"id": 10003, "name": "TEXT: Software Simplified Workflow Scheme", "description": "Generated by JIRA Software version 1001.0.0-SNAPSHOT. This workflow scheme is managed internally by Jira Software. Do not manually modify this workflow scheme.", "defaultWorkflow": "Software Simplified Workflow for Project TEXT", "issueTypeMappings": {}, "self": "https://airbyteio.atlassian.net/rest/api/3/workflowscheme/10003"}, "emitted_at": 1671213894905} +{"stream": "workflow_schemes", "data": {"id": 10004, "name": "EX: Software Simplified Workflow Scheme", "description": "Generated by JIRA Software version 1001.0.0-SNAPSHOT. This workflow scheme is managed internally by Jira Software. Do not manually modify this workflow scheme.", "defaultWorkflow": "Software Simplified Workflow for Project EX", "issueTypeMappings": {}, "self": "https://airbyteio.atlassian.net/rest/api/3/workflowscheme/10004"}, "emitted_at": 1671213894905} +{"stream": "workflow_statuses", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/3", "description": "This issue is being actively worked on at the moment by the assignee.", "iconUrl": "https://airbyteio.atlassian.net/images/icons/statuses/inprogress.png", "name": "In Progress", "untranslatedName": "In Progress", "id": "3", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/4", "id": 4, "key": "indeterminate", "colorName": "yellow", "name": "In Progress"}}, "emitted_at": 1671213895417} +{"stream": "workflow_statuses", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "To Do", "untranslatedName": "To Do", "id": "10000", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}}, "emitted_at": 1671213895417} +{"stream": "workflow_statuses", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/status/10001", "description": "", "iconUrl": "https://airbyteio.atlassian.net/", "name": "Done", "untranslatedName": "Done", "id": "10001", "statusCategory": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/3", "id": 3, "key": "done", "colorName": "green", "name": "Done"}}, "emitted_at": 1671213895417} +{"stream": "workflow_status_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/1", "id": 1, "key": "undefined", "colorName": "medium-gray", "name": "No Category"}, "emitted_at": 1671213895771} +{"stream": "workflow_status_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do"}, "emitted_at": 1671213895771} +{"stream": "workflow_status_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/4", "id": 4, "key": "indeterminate", "colorName": "yellow", "name": "In Progress"}, "emitted_at": 1671213895771} +{"stream": "workflow_status_categories", "data": {"self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/3", "id": 3, "key": "done", "colorName": "green", "name": "Done"}, "emitted_at": 1671213895772} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/full_configured_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/full_configured_catalog.json deleted file mode 100644 index 09a34e304124..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/full_configured_catalog.json +++ /dev/null @@ -1,12085 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "application_roles", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { "type": "boolean", "description": "Deprecated." }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - }, - "additionalProperties": false, - "description": "Details of an application role." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "avatars", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "system": { - "type": "array", - "description": "A list of avatar details.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the avatar." - }, - "owner": { - "type": "string", - "description": "The owner of the avatar. For a system avatar the owner is null (and nothing is returned). For non-system avatars this is the appropriate identifier, such as the ID for a project or the account ID for a user.", - "readOnly": true - }, - "isSystemAvatar": { - "type": "boolean", - "description": "Whether the avatar is a system avatar.", - "readOnly": true - }, - "isSelected": { - "type": "boolean", - "description": "Whether the avatar is used in Jira. For example, shown as a project's avatar.", - "readOnly": true - }, - "isDeletable": { - "type": "boolean", - "description": "Whether the avatar can be deleted.", - "readOnly": true - }, - "fileName": { - "type": "string", - "description": "The file name of the avatar icon. Returned for system avatars.", - "readOnly": true - }, - "urls": { - "type": "object", - "additionalProperties": { - "type": "string", - "format": "uri", - "readOnly": true - }, - "description": "The list of avatar icon URLs.", - "readOnly": true - } - } - } - } - }, - "additionalProperties": false, - "description": "List of system avatars." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "dashboards", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "description": { "type": "string" }, - "id": { - "type": "string", - "description": "The ID of the dashboard.", - "readOnly": true - }, - "isFavourite": { - "type": "boolean", - "description": "Whether the dashboard is selected as a favorite by the user.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the dashboard.", - "readOnly": true - }, - "owner": { - "description": "The owner of the dashboard.", - "readOnly": true, - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "This property is deprecated in favor of `accountId` because of privacy changes. See the [migration guide](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details. \nThe key of the user." - }, - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri" - }, - "name": { - "type": "string", - "description": "This property is deprecated in favor of `accountId` because of privacy changes. See the [migration guide](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details. \nThe username of the user." - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value." - }, - "active": { - "type": "boolean", - "description": "Whether the user is active." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*." - }, - "avatarUrls": { - "description": "The avatars of the user.", - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the user's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the user's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the user's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the user's 48x48 pixel avatar.", - "format": "uri" - } - } - } - } - }, - "popularity": { - "type": "integer", - "description": "The number of users who have this dashboard as a favorite.", - "format": "int64", - "readOnly": true - }, - "rank": { - "type": "integer", - "description": "The rank of this dashboard.", - "format": "int32", - "readOnly": true - }, - "self": { - "type": "string", - "description": "The URL of these dashboard details.", - "format": "uri", - "readOnly": true - }, - "sharePermissions": { - "type": "array", - "description": "The details of any share permissions for the dashboard.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the share permission.", - "format": "int64", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The type of share permission:\n\n * `group` Shared with a group. If set in a request, then specify `sharePermission.group` as well.\n * `project` Shared with a project. If set in a request, then specify `sharePermission.project` as well.\n * `projectRole` Share with a project role in a project. This value is not returned in responses. It is used in requests, where it needs to be specify with `projectId` and `projectRoleId`.\n * `global` Shared globally. If set in a request, no other `sharePermission` properties need to be specified.\n * `loggedin` Shared with all logged-in users. Note: This value is set in a request by specifying `authenticated` as the `type`.\n * `project-unknown` Shared with a project that the user does not have access to. Cannot be set in a request.", - "enum": [ - "group", - "project", - "projectRole", - "global", - "loggedin", - "authenticated", - "project-unknown" - ] - }, - "project": { - "description": "The project that the filter is shared with. This is similar to the project object returned by [Get project](#api-rest-api-3-project-projectIdOrKey-get) but it contains a subset of the properties, which are: `self`, `id`, `key`, `assigneeType`, `name`, `roles`, `avatarUrls`, `projectType`, `simplified`. \nFor a request, specify the `id` for the project.", - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Expand options that include additional project details in the response.", - "readOnly": true, - "xml": { "attribute": true } - }, - "self": { - "type": "string", - "description": "The URL of the project details.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "A brief description of the project.", - "readOnly": true - }, - "lead": { - "description": "The username of the project lead.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "components": { - "type": "array", - "description": "List of the components contained in the project.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the component.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The unique identifier for the component.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The unique name for the component in the project. Required when creating a component. Optional when updating a component. The maximum length is 255 characters." - }, - "description": { - "type": "string", - "description": "The description for the component. Optional when creating or updating a component." - }, - "lead": { - "description": "The user details for the component's lead user.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": [ - "atlassian", - "app", - "customer", - "unknown" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { - "type": "boolean" - }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "leadUserName": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "leadAccountId": { - "maxLength": 128, - "type": "string", - "description": "The accountId of the component's lead user. The accountId uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*.", - "writeOnly": true - }, - "assigneeType": { - "type": "string", - "description": "The nominal user type used to determine the assignee for issues created with this component. See `realAssigneeType` for details on how the type of the user, and hence the user, assigned to issues is determined. Can take the following values:\n\n * `PROJECT_LEAD` the assignee to any issues created with this component is nominally the lead for the project the component is in.\n * `COMPONENT_LEAD` the assignee to any issues created with this component is nominally the lead for the component.\n * `UNASSIGNED` an assignee is not set for issues created with this component.\n * `PROJECT_DEFAULT` the assignee to any issues created with this component is nominally the default assignee for the project that the component is in.\n\nDefault value: `PROJECT_DEFAULT`. \nOptional when creating or updating a component.", - "enum": [ - "PROJECT_DEFAULT", - "COMPONENT_LEAD", - "PROJECT_LEAD", - "UNASSIGNED" - ] - }, - "assignee": { - "description": "The details of the user associated with `assigneeType`, if any. See `realAssignee` for details of the user assigned to issues created with this component.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": [ - "atlassian", - "app", - "customer", - "unknown" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { - "type": "boolean" - }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "realAssigneeType": { - "type": "string", - "description": "The type of the assignee that is assigned to issues created with this component, when an assignee cannot be set from the `assigneeType`. For example, `assigneeType` is set to `COMPONENT_LEAD` but no component lead is set. This property is set to one of the following values:\n\n * `PROJECT_LEAD` when `assigneeType` is `PROJECT_LEAD` and the project lead has permission to be assigned issues in the project that the component is in.\n * `COMPONENT_LEAD` when `assignee`Type is `COMPONENT_LEAD` and the component lead has permission to be assigned issues in the project that the component is in.\n * `UNASSIGNED` when `assigneeType` is `UNASSIGNED` and Jira is configured to allow unassigned issues.\n * `PROJECT_DEFAULT` when none of the preceding cases are true.", - "readOnly": true, - "enum": [ - "PROJECT_DEFAULT", - "COMPONENT_LEAD", - "PROJECT_LEAD", - "UNASSIGNED" - ] - }, - "realAssignee": { - "description": "The user assigned to issues created with this component, when `assigneeType` does not identify a valid assignee.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": [ - "atlassian", - "app", - "customer", - "unknown" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { - "type": "boolean" - }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "isAssigneeTypeValid": { - "type": "boolean", - "description": "Whether a user is associated with `assigneeType`. For example, if the `assigneeType` is set to `COMPONENT_LEAD` but the component lead is not set, then `false` is returned.", - "readOnly": true - }, - "project": { - "type": "string", - "description": "The key of the project the component is assigned to. Required when creating a component. Can't be updated." - }, - "projectId": { - "type": "integer", - "description": "The ID of the project the component is assigned to.", - "format": "int64", - "readOnly": true - } - } - } - }, - "issueTypes": { - "type": "array", - "description": "List of the issue types available in the project.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of these issue type details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the issue type.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "readOnly": true - }, - "iconUrl": { - "type": "string", - "description": "The URL of the issue type's avatar.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the issue type.", - "readOnly": true - }, - "subtask": { - "type": "boolean", - "description": "Whether this issue type is used to create subtasks.", - "readOnly": true - }, - "avatarId": { - "type": "integer", - "description": "The ID of the issue type's avatar.", - "format": "int64", - "readOnly": true - }, - "entityId": { - "type": "string", - "description": "Unique ID for next-gen projects.", - "format": "uuid", - "readOnly": true - }, - "hierarchyLevel": { - "type": "integer", - "description": "Hierarchy level of the issue type.", - "format": "int32", - "readOnly": true - }, - "scope": { - "description": "Details of the next-gen projects the issue type is available in.", - "readOnly": true, - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": [ - "software", - "service_desk", - "business" - ] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - } - } - } - }, - "url": { - "type": "string", - "description": "A link to information about this project, such as project documentation.", - "readOnly": true - }, - "email": { - "type": "string", - "description": "An email address associated with the project." - }, - "assigneeType": { - "type": "string", - "description": "The default assignee when creating issues for this project.", - "readOnly": true, - "enum": ["PROJECT_LEAD", "UNASSIGNED"] - }, - "versions": { - "type": "array", - "description": "The versions defined in the project. For more information, see [Create version](#api-rest-api-3-version-post).", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Use [expand](em>#expansion) to include additional information about version in the response. This parameter accepts a comma-separated list. Expand options include:\n\n * `operations` Returns the list of operations available for this version.\n * `issuesstatus` Returns the count of issues in this version for each of the status categories *to do*, *in progress*, *done*, and *unmapped*. The *unmapped* property contains a count of issues with a status other than *to do*, *in progress*, and *done*.\n\nOptional for create and update.", - "xml": { "attribute": true } - }, - "self": { - "type": "string", - "description": "The URL of the version.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the version.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the version. Optional when creating or updating a version." - }, - "name": { - "type": "string", - "description": "The unique name of the version. Required when creating a version. Optional when updating a version. The maximum length is 255 characters." - }, - "archived": { - "type": "boolean", - "description": "Indicates that the version is archived. Optional when creating or updating a version." - }, - "released": { - "type": "boolean", - "description": "Indicates that the version is released. If the version is released a request to release again is ignored. Not applicable when creating a version. Optional when updating a version." - }, - "startDate": { - "type": "string", - "description": "The start date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.", - "format": "date" - }, - "releaseDate": { - "type": "string", - "description": "The release date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.", - "format": "date" - }, - "overdue": { - "type": "boolean", - "description": "Indicates that the version is overdue.", - "readOnly": true - }, - "userStartDate": { - "type": "string", - "description": "The date on which work on this version is expected to start, expressed in the instance's *Day/Month/Year Format* date format.", - "readOnly": true - }, - "userReleaseDate": { - "type": "string", - "description": "The date on which work on this version is expected to finish, expressed in the instance's *Day/Month/Year Format* date format.", - "readOnly": true - }, - "project": { - "type": "string", - "description": "Deprecated. Use `projectId`." - }, - "projectId": { - "type": "integer", - "description": "The ID of the project to which this version is attached. Required when creating a version. Not applicable when updating a version.", - "format": "int64" - }, - "moveUnfixedIssuesTo": { - "type": "string", - "description": "The URL of the self link to the version to which all unfixed issues are moved when a version is released. Not applicable when creating a version. Optional when updating a version.", - "format": "uri" - }, - "operations": { - "type": "array", - "description": "If the expand option `operations` is used, returns the list of operations available for this version.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { "type": "string" }, - "styleClass": { "type": "string" }, - "iconClass": { "type": "string" }, - "label": { "type": "string" }, - "title": { "type": "string" }, - "href": { "type": "string" }, - "weight": { - "type": "integer", - "format": "int32" - } - } - } - }, - "issuesStatusForFixVersion": { - "description": "If the expand option `issuesstatus` is used, returns the count of issues in this version for each of the status categories *to do*, *in progress*, *done*, and *unmapped*. The *unmapped* property contains a count of issues with a status other than *to do*, *in progress*, and *done*.", - "readOnly": true, - "type": "object", - "properties": { - "unmapped": { - "type": "integer", - "description": "Count of issues with a status other than *to do*, *in progress*, and *done*.", - "format": "int64", - "readOnly": true - }, - "toDo": { - "type": "integer", - "description": "Count of issues with status *to do*.", - "format": "int64", - "readOnly": true - }, - "inProgress": { - "type": "integer", - "description": "Count of issues with status *in progress*.", - "format": "int64", - "readOnly": true - }, - "done": { - "type": "integer", - "description": "Count of issues with status *done*.", - "format": "int64", - "readOnly": true - } - } - } - } - } - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "roles": { - "type": "object", - "additionalProperties": { - "type": "string", - "format": "uri", - "readOnly": true - }, - "description": "The name and self URL for each role defined in the project. For more information, see [Create project role](#api-rest-api-3-role-post).", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project category. Required on create, optional on update." - }, - "description": { - "type": "string", - "description": "The description of the project category. Required on create, optional on update." - } - } - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether the project is simplified.", - "readOnly": true - }, - "style": { - "type": "string", - "description": "The type of the project.", - "readOnly": true, - "enum": ["classic", "next-gen"] - }, - "favourite": { - "type": "boolean", - "description": "Whether the project is selected as a favorite." - }, - "isPrivate": { - "type": "boolean", - "description": "Whether the project is private.", - "readOnly": true - }, - "issueTypeHierarchy": { - "description": "The issue type hierarchy for the project", - "readOnly": true, - "type": "object", - "properties": { - "level": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { "type": "integer", "format": "int64" }, - "name": { "type": "string" }, - "aboveLevelId": { - "type": "integer", - "format": "int64" - }, - "belowLevelId": { - "type": "integer", - "format": "int64" - }, - "projectConfigurationId": { - "type": "integer", - "format": "int64" - }, - "level": { - "type": "integer", - "format": "int32" - }, - "issueTypeIds": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - }, - "externalUuid": { - "type": "string", - "format": "uuid" - }, - "globalHierarchyLevel": { - "type": "string", - "enum": ["SUBTASK", "BASE", "EPIC"] - } - } - } - } - } - }, - "permissions": { - "description": "User permissions on the project", - "readOnly": true, - "type": "object", - "properties": { - "canEdit": { - "type": "boolean", - "description": "Whether the logged user can edit the project.", - "readOnly": true - } - } - }, - "properties": { - "type": "object", - "additionalProperties": { "readOnly": true }, - "description": "Map of project properties", - "readOnly": true - }, - "uuid": { - "type": "string", - "description": "Unique ID for next-gen projects.", - "format": "uuid", - "readOnly": true - }, - "insight": { - "description": "Insights about the project.", - "readOnly": true, - "type": "object", - "properties": { - "totalIssueCount": { - "type": "integer", - "description": "Total issue count.", - "format": "int64", - "readOnly": true - }, - "lastIssueUpdateTime": { - "type": "string", - "description": "The last issue update time.", - "format": "date-time", - "readOnly": true - } - } - }, - "deleted": { - "type": "boolean", - "description": "Whether the project is marked as deleted.", - "readOnly": true - }, - "retentionTillDate": { - "type": "string", - "description": "The date when the project is deleted permanently.", - "format": "date-time", - "readOnly": true - }, - "deletedDate": { - "type": "string", - "description": "The date when the project was marked as deleted.", - "format": "date-time", - "readOnly": true - }, - "deletedBy": { - "description": "The user who marked the project as deleted.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "archived": { - "type": "boolean", - "description": "Whether the project is archived.", - "readOnly": true - }, - "archivedDate": { - "type": "string", - "description": "The date when the project was archived.", - "format": "date-time", - "readOnly": true - }, - "archivedBy": { - "description": "The user who archived the project.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - } - } - }, - "role": { - "description": "The project role that the filter is shared with. \nFor a request, specify the `id` for the role. You must also specify the `project` object and `id` for the project that the role is in.", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL the project role details.", - "format": "uri", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project role." - }, - "id": { - "type": "integer", - "description": "The ID of the project role.", - "format": "int64", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the project role.", - "readOnly": true - }, - "actors": { - "type": "array", - "description": "The list of users who act in this role.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the role actor.", - "format": "int64", - "readOnly": true - }, - "displayName": { - "type": "string", - "description": "The display name of the role actor. For users, depending on the user\u2019s privacy setting, this may return an alternative value for the user's name.", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The type of role actor.", - "readOnly": true, - "enum": [ - "atlassian-group-role-actor", - "atlassian-user-role-actor" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "avatarUrl": { - "type": "string", - "description": "The avatar of the role actor.", - "format": "uri", - "readOnly": true - }, - "actorUser": { - "readOnly": true, - "type": "object", - "properties": { - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Returns *unknown* if the record is deleted and corrupted, for example, as the result of a server import.", - "readOnly": true - } - } - }, - "actorGroup": { - "readOnly": true, - "type": "object", - "properties": { - "displayName": { - "type": "string", - "description": "The display name of the group." - }, - "name": { - "type": "string", - "description": "The name of the group" - } - } - } - } - } - }, - "scope": { - "description": "The scope of the role. Indicated for roles associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO).", - "readOnly": true, - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - }, - "translatedName": { - "type": "string", - "description": "The translated name of the project role." - }, - "currentUserRole": { - "type": "boolean", - "description": "Whether the calling user is part of this role." - }, - "admin": { - "type": "boolean", - "description": "Whether this role is the admin role for the project.", - "readOnly": true - }, - "roleConfigurable": { - "type": "boolean", - "description": "Whether the roles are configurable for this project.", - "readOnly": true - }, - "default": { - "type": "boolean", - "description": "Whether this role is the default role for the project", - "readOnly": true - } - } - }, - "group": { - "description": "The group that the filter is shared with. For a request, specify the `name` property for the group.", - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - } - } - }, - "view": { - "type": "string", - "description": "The URL of the dashboard.", - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Details of a dashboard." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "filters", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the filter.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The unique identifier for the filter.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the filter. Must be unique." - }, - "description": { - "type": "string", - "description": "A description of the filter." - }, - "owner": { - "description": "The user who owns the filter. This is defaulted to the creator of the filter, however Jira administrators can change the owner of a shared filter in the admin settings.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "jql": { - "type": "string", - "description": "The JQL query for the filter. For example, *project = SSP AND issuetype = Bug*.", - "readOnly": true - }, - "viewUrl": { - "type": "string", - "description": "A URL to view the filter results in Jira, using the ID of the filter. For example, *https://your-domain.atlassian.net/issues/?filter=10100*.", - "format": "uri", - "readOnly": true - }, - "searchUrl": { - "type": "string", - "description": "A URL to view the filter results in Jira, using the [Search for issues using JQL](#api-rest-api-3-filter-search-get) operation with the filter's JQL string to return the filter results. For example, *https://your-domain.atlassian.net/rest/api/3/search?jql=project+%3D+SSP+AND+issuetype+%3D+Bug*.", - "format": "uri", - "readOnly": true - }, - "favourite": { - "type": "boolean", - "description": "Whether the filter is selected as a favorite by any users, not including the filter owner.", - "readOnly": true - }, - "favouritedCount": { - "type": "integer", - "description": "The count of how many users have selected this filter as a favorite, including the filter owner.", - "format": "int64", - "readOnly": true - }, - "sharePermissions": { - "type": "array", - "description": "The groups and projects that the filter is shared with. This can be specified when updating a filter, but not when creating a filter.", - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the share permission.", - "format": "int64", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The type of share permission:\n\n * `group` Shared with a group. If set in a request, then specify `sharePermission.group` as well.\n * `project` Shared with a project. If set in a request, then specify `sharePermission.project` as well.\n * `projectRole` Share with a project role in a project. This value is not returned in responses. It is used in requests, where it needs to be specify with `projectId` and `projectRoleId`.\n * `global` Shared globally. If set in a request, no other `sharePermission` properties need to be specified.\n * `loggedin` Shared with all logged-in users. Note: This value is set in a request by specifying `authenticated` as the `type`.\n * `project-unknown` Shared with a project that the user does not have access to. Cannot be set in a request.", - "enum": [ - "group", - "project", - "projectRole", - "global", - "loggedin", - "authenticated", - "project-unknown" - ] - }, - "project": { - "description": "The project that the filter is shared with. This is similar to the project object returned by [Get project](#api-rest-api-3-project-projectIdOrKey-get) but it contains a subset of the properties, which are: `self`, `id`, `key`, `assigneeType`, `name`, `roles`, `avatarUrls`, `projectType`, `simplified`. \nFor a request, specify the `id` for the project.", - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Expand options that include additional project details in the response.", - "readOnly": true, - "xml": { "attribute": true } - }, - "self": { - "type": "string", - "description": "The URL of the project details.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "A brief description of the project.", - "readOnly": true - }, - "lead": { - "description": "The username of the project lead.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "components": { - "type": "array", - "description": "List of the components contained in the project.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the component.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The unique identifier for the component.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The unique name for the component in the project. Required when creating a component. Optional when updating a component. The maximum length is 255 characters." - }, - "description": { - "type": "string", - "description": "The description for the component. Optional when creating or updating a component." - }, - "lead": { - "description": "The user details for the component's lead user.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": [ - "atlassian", - "app", - "customer", - "unknown" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { - "type": "boolean" - }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "leadUserName": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "leadAccountId": { - "maxLength": 128, - "type": "string", - "description": "The accountId of the component's lead user. The accountId uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*.", - "writeOnly": true - }, - "assigneeType": { - "type": "string", - "description": "The nominal user type used to determine the assignee for issues created with this component. See `realAssigneeType` for details on how the type of the user, and hence the user, assigned to issues is determined. Can take the following values:\n\n * `PROJECT_LEAD` the assignee to any issues created with this component is nominally the lead for the project the component is in.\n * `COMPONENT_LEAD` the assignee to any issues created with this component is nominally the lead for the component.\n * `UNASSIGNED` an assignee is not set for issues created with this component.\n * `PROJECT_DEFAULT` the assignee to any issues created with this component is nominally the default assignee for the project that the component is in.\n\nDefault value: `PROJECT_DEFAULT`. \nOptional when creating or updating a component.", - "enum": [ - "PROJECT_DEFAULT", - "COMPONENT_LEAD", - "PROJECT_LEAD", - "UNASSIGNED" - ] - }, - "assignee": { - "description": "The details of the user associated with `assigneeType`, if any. See `realAssignee` for details of the user assigned to issues created with this component.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": [ - "atlassian", - "app", - "customer", - "unknown" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { - "type": "boolean" - }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "realAssigneeType": { - "type": "string", - "description": "The type of the assignee that is assigned to issues created with this component, when an assignee cannot be set from the `assigneeType`. For example, `assigneeType` is set to `COMPONENT_LEAD` but no component lead is set. This property is set to one of the following values:\n\n * `PROJECT_LEAD` when `assigneeType` is `PROJECT_LEAD` and the project lead has permission to be assigned issues in the project that the component is in.\n * `COMPONENT_LEAD` when `assignee`Type is `COMPONENT_LEAD` and the component lead has permission to be assigned issues in the project that the component is in.\n * `UNASSIGNED` when `assigneeType` is `UNASSIGNED` and Jira is configured to allow unassigned issues.\n * `PROJECT_DEFAULT` when none of the preceding cases are true.", - "readOnly": true, - "enum": [ - "PROJECT_DEFAULT", - "COMPONENT_LEAD", - "PROJECT_LEAD", - "UNASSIGNED" - ] - }, - "realAssignee": { - "description": "The user assigned to issues created with this component, when `assigneeType` does not identify a valid assignee.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": [ - "atlassian", - "app", - "customer", - "unknown" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { - "type": "boolean" - }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "isAssigneeTypeValid": { - "type": "boolean", - "description": "Whether a user is associated with `assigneeType`. For example, if the `assigneeType` is set to `COMPONENT_LEAD` but the component lead is not set, then `false` is returned.", - "readOnly": true - }, - "project": { - "type": "string", - "description": "The key of the project the component is assigned to. Required when creating a component. Can't be updated." - }, - "projectId": { - "type": "integer", - "description": "The ID of the project the component is assigned to.", - "format": "int64", - "readOnly": true - } - } - } - }, - "issueTypes": { - "type": "array", - "description": "List of the issue types available in the project.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of these issue type details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the issue type.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "readOnly": true - }, - "iconUrl": { - "type": "string", - "description": "The URL of the issue type's avatar.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the issue type.", - "readOnly": true - }, - "subtask": { - "type": "boolean", - "description": "Whether this issue type is used to create subtasks.", - "readOnly": true - }, - "avatarId": { - "type": "integer", - "description": "The ID of the issue type's avatar.", - "format": "int64", - "readOnly": true - }, - "entityId": { - "type": "string", - "description": "Unique ID for next-gen projects.", - "format": "uuid", - "readOnly": true - }, - "hierarchyLevel": { - "type": "integer", - "description": "Hierarchy level of the issue type.", - "format": "int32", - "readOnly": true - }, - "scope": { - "description": "Details of the next-gen projects the issue type is available in.", - "readOnly": true, - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": [ - "software", - "service_desk", - "business" - ] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - } - } - } - }, - "url": { - "type": "string", - "description": "A link to information about this project, such as project documentation.", - "readOnly": true - }, - "email": { - "type": "string", - "description": "An email address associated with the project." - }, - "assigneeType": { - "type": "string", - "description": "The default assignee when creating issues for this project.", - "readOnly": true, - "enum": ["PROJECT_LEAD", "UNASSIGNED"] - }, - "versions": { - "type": "array", - "description": "The versions defined in the project. For more information, see [Create version](#api-rest-api-3-version-post).", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Use [expand](em>#expansion) to include additional information about version in the response. This parameter accepts a comma-separated list. Expand options include:\n\n * `operations` Returns the list of operations available for this version.\n * `issuesstatus` Returns the count of issues in this version for each of the status categories *to do*, *in progress*, *done*, and *unmapped*. The *unmapped* property contains a count of issues with a status other than *to do*, *in progress*, and *done*.\n\nOptional for create and update.", - "xml": { "attribute": true } - }, - "self": { - "type": "string", - "description": "The URL of the version.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the version.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the version. Optional when creating or updating a version." - }, - "name": { - "type": "string", - "description": "The unique name of the version. Required when creating a version. Optional when updating a version. The maximum length is 255 characters." - }, - "archived": { - "type": "boolean", - "description": "Indicates that the version is archived. Optional when creating or updating a version." - }, - "released": { - "type": "boolean", - "description": "Indicates that the version is released. If the version is released a request to release again is ignored. Not applicable when creating a version. Optional when updating a version." - }, - "startDate": { - "type": "string", - "description": "The start date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.", - "format": "date" - }, - "releaseDate": { - "type": "string", - "description": "The release date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.", - "format": "date" - }, - "overdue": { - "type": "boolean", - "description": "Indicates that the version is overdue.", - "readOnly": true - }, - "userStartDate": { - "type": "string", - "description": "The date on which work on this version is expected to start, expressed in the instance's *Day/Month/Year Format* date format.", - "readOnly": true - }, - "userReleaseDate": { - "type": "string", - "description": "The date on which work on this version is expected to finish, expressed in the instance's *Day/Month/Year Format* date format.", - "readOnly": true - }, - "project": { - "type": "string", - "description": "Deprecated. Use `projectId`." - }, - "projectId": { - "type": "integer", - "description": "The ID of the project to which this version is attached. Required when creating a version. Not applicable when updating a version.", - "format": "int64" - }, - "moveUnfixedIssuesTo": { - "type": "string", - "description": "The URL of the self link to the version to which all unfixed issues are moved when a version is released. Not applicable when creating a version. Optional when updating a version.", - "format": "uri" - }, - "operations": { - "type": "array", - "description": "If the expand option `operations` is used, returns the list of operations available for this version.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { "type": "string" }, - "styleClass": { "type": "string" }, - "iconClass": { "type": "string" }, - "label": { "type": "string" }, - "title": { "type": "string" }, - "href": { "type": "string" }, - "weight": { - "type": "integer", - "format": "int32" - } - } - } - }, - "issuesStatusForFixVersion": { - "description": "If the expand option `issuesstatus` is used, returns the count of issues in this version for each of the status categories *to do*, *in progress*, *done*, and *unmapped*. The *unmapped* property contains a count of issues with a status other than *to do*, *in progress*, and *done*.", - "readOnly": true, - "type": "object", - "properties": { - "unmapped": { - "type": "integer", - "description": "Count of issues with a status other than *to do*, *in progress*, and *done*.", - "format": "int64", - "readOnly": true - }, - "toDo": { - "type": "integer", - "description": "Count of issues with status *to do*.", - "format": "int64", - "readOnly": true - }, - "inProgress": { - "type": "integer", - "description": "Count of issues with status *in progress*.", - "format": "int64", - "readOnly": true - }, - "done": { - "type": "integer", - "description": "Count of issues with status *done*.", - "format": "int64", - "readOnly": true - } - } - } - } - } - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "roles": { - "type": "object", - "additionalProperties": { - "type": "string", - "format": "uri", - "readOnly": true - }, - "description": "The name and self URL for each role defined in the project. For more information, see [Create project role](#api-rest-api-3-role-post).", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project category. Required on create, optional on update." - }, - "description": { - "type": "string", - "description": "The description of the project category. Required on create, optional on update." - } - } - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether the project is simplified.", - "readOnly": true - }, - "style": { - "type": "string", - "description": "The type of the project.", - "readOnly": true, - "enum": ["classic", "next-gen"] - }, - "favourite": { - "type": "boolean", - "description": "Whether the project is selected as a favorite." - }, - "isPrivate": { - "type": "boolean", - "description": "Whether the project is private.", - "readOnly": true - }, - "issueTypeHierarchy": { - "description": "The issue type hierarchy for the project", - "readOnly": true, - "type": "object", - "properties": { - "level": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { "type": "integer", "format": "int64" }, - "name": { "type": "string" }, - "aboveLevelId": { - "type": "integer", - "format": "int64" - }, - "belowLevelId": { - "type": "integer", - "format": "int64" - }, - "projectConfigurationId": { - "type": "integer", - "format": "int64" - }, - "level": { - "type": "integer", - "format": "int32" - }, - "issueTypeIds": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - } - }, - "externalUuid": { - "type": "string", - "format": "uuid" - }, - "globalHierarchyLevel": { - "type": "string", - "enum": ["SUBTASK", "BASE", "EPIC"] - } - } - } - } - } - }, - "permissions": { - "description": "User permissions on the project", - "readOnly": true, - "type": "object", - "properties": { - "canEdit": { - "type": "boolean", - "description": "Whether the logged user can edit the project.", - "readOnly": true - } - } - }, - "properties": { - "type": "object", - "additionalProperties": { "readOnly": true }, - "description": "Map of project properties", - "readOnly": true - }, - "uuid": { - "type": "string", - "description": "Unique ID for next-gen projects.", - "format": "uuid", - "readOnly": true - }, - "insight": { - "description": "Insights about the project.", - "readOnly": true, - "type": "object", - "properties": { - "totalIssueCount": { - "type": "integer", - "description": "Total issue count.", - "format": "int64", - "readOnly": true - }, - "lastIssueUpdateTime": { - "type": "string", - "description": "The last issue update time.", - "format": "date-time", - "readOnly": true - } - } - }, - "deleted": { - "type": "boolean", - "description": "Whether the project is marked as deleted.", - "readOnly": true - }, - "retentionTillDate": { - "type": "string", - "description": "The date when the project is deleted permanently.", - "format": "date-time", - "readOnly": true - }, - "deletedDate": { - "type": "string", - "description": "The date when the project was marked as deleted.", - "format": "date-time", - "readOnly": true - }, - "deletedBy": { - "description": "The user who marked the project as deleted.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "archived": { - "type": "boolean", - "description": "Whether the project is archived.", - "readOnly": true - }, - "archivedDate": { - "type": "string", - "description": "The date when the project was archived.", - "format": "date-time", - "readOnly": true - }, - "archivedBy": { - "description": "The user who archived the project.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - } - } - }, - "role": { - "description": "The project role that the filter is shared with. \nFor a request, specify the `id` for the role. You must also specify the `project` object and `id` for the project that the role is in.", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL the project role details.", - "format": "uri", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project role." - }, - "id": { - "type": "integer", - "description": "The ID of the project role.", - "format": "int64", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the project role.", - "readOnly": true - }, - "actors": { - "type": "array", - "description": "The list of users who act in this role.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the role actor.", - "format": "int64", - "readOnly": true - }, - "displayName": { - "type": "string", - "description": "The display name of the role actor. For users, depending on the user\u2019s privacy setting, this may return an alternative value for the user's name.", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The type of role actor.", - "readOnly": true, - "enum": [ - "atlassian-group-role-actor", - "atlassian-user-role-actor" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "avatarUrl": { - "type": "string", - "description": "The avatar of the role actor.", - "format": "uri", - "readOnly": true - }, - "actorUser": { - "readOnly": true, - "type": "object", - "properties": { - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Returns *unknown* if the record is deleted and corrupted, for example, as the result of a server import.", - "readOnly": true - } - } - }, - "actorGroup": { - "readOnly": true, - "type": "object", - "properties": { - "displayName": { - "type": "string", - "description": "The display name of the group." - }, - "name": { - "type": "string", - "description": "The name of the group" - } - } - } - } - } - }, - "scope": { - "description": "The scope of the role. Indicated for roles associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO).", - "readOnly": true, - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - }, - "translatedName": { - "type": "string", - "description": "The translated name of the project role." - }, - "currentUserRole": { - "type": "boolean", - "description": "Whether the calling user is part of this role." - }, - "admin": { - "type": "boolean", - "description": "Whether this role is the admin role for the project.", - "readOnly": true - }, - "roleConfigurable": { - "type": "boolean", - "description": "Whether the roles are configurable for this project.", - "readOnly": true - }, - "default": { - "type": "boolean", - "description": "Whether this role is the default role for the project", - "readOnly": true - } - } - }, - "group": { - "description": "The group that the filter is shared with. For a request, specify the `name` property for the group.", - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - } - } - }, - "subscriptions": { - "type": "array", - "description": "The users that are subscribed to the filter.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the filter subscription.", - "format": "int64", - "readOnly": true - }, - "user": { - "description": "The user subscribing to filter.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "group": { - "description": "The group subscribing to filter.", - "readOnly": true, - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - } - } - } - }, - "additionalProperties": false, - "description": "Details of a filter." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "filter_sharing", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the share permission.", - "format": "int64", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The type of share permission:\n\n * `group` Shared with a group. If set in a request, then specify `sharePermission.group` as well.\n * `project` Shared with a project. If set in a request, then specify `sharePermission.project` as well.\n * `projectRole` Share with a project role in a project. This value is not returned in responses. It is used in requests, where it needs to be specify with `projectId` and `projectRoleId`.\n * `global` Shared globally. If set in a request, no other `sharePermission` properties need to be specified.\n * `loggedin` Shared with all logged-in users. Note: This value is set in a request by specifying `authenticated` as the `type`.\n * `project-unknown` Shared with a project that the user does not have access to. Cannot be set in a request.", - "enum": [ - "group", - "project", - "projectRole", - "global", - "loggedin", - "authenticated", - "project-unknown" - ] - }, - "project": { - "description": "The project that the filter is shared with. This is similar to the project object returned by [Get project](#api-rest-api-3-project-projectIdOrKey-get) but it contains a subset of the properties, which are: `self`, `id`, `key`, `assigneeType`, `name`, `roles`, `avatarUrls`, `projectType`, `simplified`. \nFor a request, specify the `id` for the project.", - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Expand options that include additional project details in the response.", - "readOnly": true, - "xml": { "attribute": true } - }, - "self": { - "type": "string", - "description": "The URL of the project details.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "A brief description of the project.", - "readOnly": true - }, - "lead": { - "description": "The username of the project lead.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "components": { - "type": "array", - "description": "List of the components contained in the project.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the component.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The unique identifier for the component.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The unique name for the component in the project. Required when creating a component. Optional when updating a component. The maximum length is 255 characters." - }, - "description": { - "type": "string", - "description": "The description for the component. Optional when creating or updating a component." - }, - "lead": { - "description": "The user details for the component's lead user.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "leadUserName": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "leadAccountId": { - "maxLength": 128, - "type": "string", - "description": "The accountId of the component's lead user. The accountId uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*.", - "writeOnly": true - }, - "assigneeType": { - "type": "string", - "description": "The nominal user type used to determine the assignee for issues created with this component. See `realAssigneeType` for details on how the type of the user, and hence the user, assigned to issues is determined. Can take the following values:\n\n * `PROJECT_LEAD` the assignee to any issues created with this component is nominally the lead for the project the component is in.\n * `COMPONENT_LEAD` the assignee to any issues created with this component is nominally the lead for the component.\n * `UNASSIGNED` an assignee is not set for issues created with this component.\n * `PROJECT_DEFAULT` the assignee to any issues created with this component is nominally the default assignee for the project that the component is in.\n\nDefault value: `PROJECT_DEFAULT`. \nOptional when creating or updating a component.", - "enum": [ - "PROJECT_DEFAULT", - "COMPONENT_LEAD", - "PROJECT_LEAD", - "UNASSIGNED" - ] - }, - "assignee": { - "description": "The details of the user associated with `assigneeType`, if any. See `realAssignee` for details of the user assigned to issues created with this component.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "realAssigneeType": { - "type": "string", - "description": "The type of the assignee that is assigned to issues created with this component, when an assignee cannot be set from the `assigneeType`. For example, `assigneeType` is set to `COMPONENT_LEAD` but no component lead is set. This property is set to one of the following values:\n\n * `PROJECT_LEAD` when `assigneeType` is `PROJECT_LEAD` and the project lead has permission to be assigned issues in the project that the component is in.\n * `COMPONENT_LEAD` when `assignee`Type is `COMPONENT_LEAD` and the component lead has permission to be assigned issues in the project that the component is in.\n * `UNASSIGNED` when `assigneeType` is `UNASSIGNED` and Jira is configured to allow unassigned issues.\n * `PROJECT_DEFAULT` when none of the preceding cases are true.", - "readOnly": true, - "enum": [ - "PROJECT_DEFAULT", - "COMPONENT_LEAD", - "PROJECT_LEAD", - "UNASSIGNED" - ] - }, - "realAssignee": { - "description": "The user assigned to issues created with this component, when `assigneeType` does not identify a valid assignee.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { - "name": "max-results", - "attribute": true - } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "isAssigneeTypeValid": { - "type": "boolean", - "description": "Whether a user is associated with `assigneeType`. For example, if the `assigneeType` is set to `COMPONENT_LEAD` but the component lead is not set, then `false` is returned.", - "readOnly": true - }, - "project": { - "type": "string", - "description": "The key of the project the component is assigned to. Required when creating a component. Can't be updated." - }, - "projectId": { - "type": "integer", - "description": "The ID of the project the component is assigned to.", - "format": "int64", - "readOnly": true - } - } - } - }, - "issueTypes": { - "type": "array", - "description": "List of the issue types available in the project.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of these issue type details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the issue type.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "readOnly": true - }, - "iconUrl": { - "type": "string", - "description": "The URL of the issue type's avatar.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the issue type.", - "readOnly": true - }, - "subtask": { - "type": "boolean", - "description": "Whether this issue type is used to create subtasks.", - "readOnly": true - }, - "avatarId": { - "type": "integer", - "description": "The ID of the issue type's avatar.", - "format": "int64", - "readOnly": true - }, - "entityId": { - "type": "string", - "description": "Unique ID for next-gen projects.", - "format": "uuid", - "readOnly": true - }, - "hierarchyLevel": { - "type": "integer", - "description": "Hierarchy level of the issue type.", - "format": "int32", - "readOnly": true - }, - "scope": { - "description": "Details of the next-gen projects the issue type is available in.", - "readOnly": true, - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - } - } - } - }, - "url": { - "type": "string", - "description": "A link to information about this project, such as project documentation.", - "readOnly": true - }, - "email": { - "type": "string", - "description": "An email address associated with the project." - }, - "assigneeType": { - "type": "string", - "description": "The default assignee when creating issues for this project.", - "readOnly": true, - "enum": ["PROJECT_LEAD", "UNASSIGNED"] - }, - "versions": { - "type": "array", - "description": "The versions defined in the project. For more information, see [Create version](#api-rest-api-3-version-post).", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Use [expand](em>#expansion) to include additional information about version in the response. This parameter accepts a comma-separated list. Expand options include:\n\n * `operations` Returns the list of operations available for this version.\n * `issuesstatus` Returns the count of issues in this version for each of the status categories *to do*, *in progress*, *done*, and *unmapped*. The *unmapped* property contains a count of issues with a status other than *to do*, *in progress*, and *done*.\n\nOptional for create and update.", - "xml": { "attribute": true } - }, - "self": { - "type": "string", - "description": "The URL of the version.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the version.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the version. Optional when creating or updating a version." - }, - "name": { - "type": "string", - "description": "The unique name of the version. Required when creating a version. Optional when updating a version. The maximum length is 255 characters." - }, - "archived": { - "type": "boolean", - "description": "Indicates that the version is archived. Optional when creating or updating a version." - }, - "released": { - "type": "boolean", - "description": "Indicates that the version is released. If the version is released a request to release again is ignored. Not applicable when creating a version. Optional when updating a version." - }, - "startDate": { - "type": "string", - "description": "The start date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.", - "format": "date" - }, - "releaseDate": { - "type": "string", - "description": "The release date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.", - "format": "date" - }, - "overdue": { - "type": "boolean", - "description": "Indicates that the version is overdue.", - "readOnly": true - }, - "userStartDate": { - "type": "string", - "description": "The date on which work on this version is expected to start, expressed in the instance's *Day/Month/Year Format* date format.", - "readOnly": true - }, - "userReleaseDate": { - "type": "string", - "description": "The date on which work on this version is expected to finish, expressed in the instance's *Day/Month/Year Format* date format.", - "readOnly": true - }, - "project": { - "type": "string", - "description": "Deprecated. Use `projectId`." - }, - "projectId": { - "type": "integer", - "description": "The ID of the project to which this version is attached. Required when creating a version. Not applicable when updating a version.", - "format": "int64" - }, - "moveUnfixedIssuesTo": { - "type": "string", - "description": "The URL of the self link to the version to which all unfixed issues are moved when a version is released. Not applicable when creating a version. Optional when updating a version.", - "format": "uri" - }, - "operations": { - "type": "array", - "description": "If the expand option `operations` is used, returns the list of operations available for this version.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { "type": "string" }, - "styleClass": { "type": "string" }, - "iconClass": { "type": "string" }, - "label": { "type": "string" }, - "title": { "type": "string" }, - "href": { "type": "string" }, - "weight": { "type": "integer", "format": "int32" } - } - } - }, - "issuesStatusForFixVersion": { - "description": "If the expand option `issuesstatus` is used, returns the count of issues in this version for each of the status categories *to do*, *in progress*, *done*, and *unmapped*. The *unmapped* property contains a count of issues with a status other than *to do*, *in progress*, and *done*.", - "readOnly": true, - "type": "object", - "properties": { - "unmapped": { - "type": "integer", - "description": "Count of issues with a status other than *to do*, *in progress*, and *done*.", - "format": "int64", - "readOnly": true - }, - "toDo": { - "type": "integer", - "description": "Count of issues with status *to do*.", - "format": "int64", - "readOnly": true - }, - "inProgress": { - "type": "integer", - "description": "Count of issues with status *in progress*.", - "format": "int64", - "readOnly": true - }, - "done": { - "type": "integer", - "description": "Count of issues with status *done*.", - "format": "int64", - "readOnly": true - } - } - } - } - } - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "roles": { - "type": "object", - "additionalProperties": { - "type": "string", - "format": "uri", - "readOnly": true - }, - "description": "The name and self URL for each role defined in the project. For more information, see [Create project role](#api-rest-api-3-role-post).", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project category. Required on create, optional on update." - }, - "description": { - "type": "string", - "description": "The description of the project category. Required on create, optional on update." - } - } - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether the project is simplified.", - "readOnly": true - }, - "style": { - "type": "string", - "description": "The type of the project.", - "readOnly": true, - "enum": ["classic", "next-gen"] - }, - "favourite": { - "type": "boolean", - "description": "Whether the project is selected as a favorite." - }, - "isPrivate": { - "type": "boolean", - "description": "Whether the project is private.", - "readOnly": true - }, - "issueTypeHierarchy": { - "description": "The issue type hierarchy for the project", - "readOnly": true, - "type": "object", - "properties": { - "level": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { "type": "integer", "format": "int64" }, - "name": { "type": "string" }, - "aboveLevelId": { - "type": "integer", - "format": "int64" - }, - "belowLevelId": { - "type": "integer", - "format": "int64" - }, - "projectConfigurationId": { - "type": "integer", - "format": "int64" - }, - "level": { "type": "integer", "format": "int32" }, - "issueTypeIds": { - "type": "array", - "items": { "type": "integer", "format": "int64" } - }, - "externalUuid": { - "type": "string", - "format": "uuid" - }, - "globalHierarchyLevel": { - "type": "string", - "enum": ["SUBTASK", "BASE", "EPIC"] - } - } - } - } - } - }, - "permissions": { - "description": "User permissions on the project", - "readOnly": true, - "type": "object", - "properties": { - "canEdit": { - "type": "boolean", - "description": "Whether the logged user can edit the project.", - "readOnly": true - } - } - }, - "properties": { - "type": "object", - "additionalProperties": { "readOnly": true }, - "description": "Map of project properties", - "readOnly": true - }, - "uuid": { - "type": "string", - "description": "Unique ID for next-gen projects.", - "format": "uuid", - "readOnly": true - }, - "insight": { - "description": "Insights about the project.", - "readOnly": true, - "type": "object", - "properties": { - "totalIssueCount": { - "type": "integer", - "description": "Total issue count.", - "format": "int64", - "readOnly": true - }, - "lastIssueUpdateTime": { - "type": "string", - "description": "The last issue update time.", - "format": "date-time", - "readOnly": true - } - } - }, - "deleted": { - "type": "boolean", - "description": "Whether the project is marked as deleted.", - "readOnly": true - }, - "retentionTillDate": { - "type": "string", - "description": "The date when the project is deleted permanently.", - "format": "date-time", - "readOnly": true - }, - "deletedDate": { - "type": "string", - "description": "The date when the project was marked as deleted.", - "format": "date-time", - "readOnly": true - }, - "deletedBy": { - "description": "The user who marked the project as deleted.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "archived": { - "type": "boolean", - "description": "Whether the project is archived.", - "readOnly": true - }, - "archivedDate": { - "type": "string", - "description": "The date when the project was archived.", - "format": "date-time", - "readOnly": true - }, - "archivedBy": { - "description": "The user who archived the project.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - } - } - }, - "role": { - "description": "The project role that the filter is shared with. \nFor a request, specify the `id` for the role. You must also specify the `project` object and `id` for the project that the role is in.", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL the project role details.", - "format": "uri", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project role." - }, - "id": { - "type": "integer", - "description": "The ID of the project role.", - "format": "int64", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the project role.", - "readOnly": true - }, - "actors": { - "type": "array", - "description": "The list of users who act in this role.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the role actor.", - "format": "int64", - "readOnly": true - }, - "displayName": { - "type": "string", - "description": "The display name of the role actor. For users, depending on the user\u2019s privacy setting, this may return an alternative value for the user's name.", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The type of role actor.", - "readOnly": true, - "enum": [ - "atlassian-group-role-actor", - "atlassian-user-role-actor" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "avatarUrl": { - "type": "string", - "description": "The avatar of the role actor.", - "format": "uri", - "readOnly": true - }, - "actorUser": { - "readOnly": true, - "type": "object", - "properties": { - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Returns *unknown* if the record is deleted and corrupted, for example, as the result of a server import.", - "readOnly": true - } - } - }, - "actorGroup": { - "readOnly": true, - "type": "object", - "properties": { - "displayName": { - "type": "string", - "description": "The display name of the group." - }, - "name": { - "type": "string", - "description": "The name of the group" - } - } - } - } - } - }, - "scope": { - "description": "The scope of the role. Indicated for roles associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO).", - "readOnly": true, - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - }, - "translatedName": { - "type": "string", - "description": "The translated name of the project role." - }, - "currentUserRole": { - "type": "boolean", - "description": "Whether the calling user is part of this role." - }, - "admin": { - "type": "boolean", - "description": "Whether this role is the admin role for the project.", - "readOnly": true - }, - "roleConfigurable": { - "type": "boolean", - "description": "Whether the roles are configurable for this project.", - "readOnly": true - }, - "default": { - "type": "boolean", - "description": "Whether this role is the default role for the project", - "readOnly": true - } - } - }, - "group": { - "description": "The group that the filter is shared with. For a request, specify the `name` property for the group.", - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "additionalProperties": false, - "description": "Details of a share permission for the filter." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "groups", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "header": { - "type": "string", - "description": "Header text indicating the number of groups in the response and the total number of groups found in the search." - }, - "total": { - "type": "integer", - "description": "The total number of groups found in the search.", - "format": "int32" - }, - "groups": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of the group." - }, - "html": { - "type": "string", - "description": "The group name with the matched query string highlighted with the HTML bold tag." - }, - "labels": { - "type": "array", - "items": { - "type": "object", - "properties": { - "text": { - "type": "string", - "description": "The group label name." - }, - "title": { - "type": "string", - "description": "The title of the group label." - }, - "type": { - "type": "string", - "description": "The type of the group label.", - "enum": ["ADMIN", "SINGLE", "MULTIPLE"] - } - } - } - }, - "groupId": { - "type": "string", - "description": "The ID of the group, if available, which uniquely identifies the group across all Atlassian products. For example, *952d12c3-5b5b-4d04-bb32-44d383afc4b2*." - } - } - } - } - }, - "additionalProperties": false, - "description": "The list of groups found in a search, including header text (Showing X of Y matching groups) and total of matched groups." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issues", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Expand options that include additional issue details in the response.", - "readOnly": true, - "xml": { - "attribute": true - } - }, - "id": { - "type": "string", - "description": "The ID of the issue.", - "readOnly": true - }, - "self": { - "type": "string", - "description": "The URL of the issue details.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "The key of the issue.", - "readOnly": true - }, - "renderedFields": { - "type": "object", - "additionalProperties": { - "readOnly": true - }, - "description": "The rendered value of each field present on the issue.", - "readOnly": true - }, - "properties": { - "type": "object", - "additionalProperties": { - "readOnly": true - }, - "description": "Details of the issue properties identified in the request.", - "readOnly": true - }, - "names": { - "type": "object", - "additionalProperties": { - "type": "string", - "readOnly": true - }, - "description": "The ID and name of each field present on the issue.", - "readOnly": true - }, - "schema": { - "type": "object", - "description": "The schema describing each field present on the issue.", - "readOnly": true - }, - "transitions": { - "type": "array", - "description": "The transitions that can be performed on the issue.", - "readOnly": true - }, - "operations": { - "description": "The operations that can be performed on the issue.", - "readOnly": true - }, - "editmeta": { - "description": "The metadata for the fields on the issue that can be amended.", - "readOnly": true - }, - "changelog": { - "description": "Details of changelogs associated with the issue.", - "readOnly": true - }, - "versionedRepresentations": { - "type": "object", - "additionalProperties": { - "type": "object", - "additionalProperties": { - "readOnly": true - }, - "readOnly": true - }, - "description": "The versions of each field on the issue.", - "readOnly": true - }, - "fieldsToInclude": { - "type": "object" - }, - "fields": { - "type": "object", - "additionalProperties": {} - } - }, - "additionalProperties": false - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updated"] - }, - "sync_mode": "incremental", - "cursor_field": ["updated"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "issue_comments", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the comment.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the comment.", - "readOnly": true - }, - "author": { - "description": "The ID of the user who created the comment.", - "readOnly": true - }, - "body": { - "description": "The comment text in [Atlassian Document Format](https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/)." - }, - "renderedBody": { - "type": "string", - "description": "The rendered version of the comment.", - "readOnly": true - }, - "updateAuthor": { - "description": "The ID of the user who updated the comment last.", - "readOnly": true - }, - "created": { - "type": "string", - "description": "The date and time at which the comment was created.", - "format": "date-time", - "readOnly": true - }, - "updated": { - "type": "string", - "description": "The date and time at which the comment was updated last.", - "format": "date-time", - "readOnly": true - }, - "visibility": { - "description": "The group or role to which this comment is visible. Optional on create and update." - }, - "jsdPublic": { - "type": "boolean", - "description": "Whether the comment is visible in Jira Service Desk. Defaults to true when comments are created in the Jira Cloud Platform. This includes when the site doesn't use Jira Service Desk or the project isn't a Jira Service Desk project and, therefore, there is no Jira Service Desk for the issue to be visible on. To create a comment with its visibility in Jira Service Desk set to false, use the Jira Service Desk REST API [Create request comment](https://developer.atlassian.com/cloud/jira/service-desk/rest/#api-rest-servicedeskapi-request-issueIdOrKey-comment-post) operation.", - "readOnly": true - }, - "properties": { - "type": "array", - "description": "A list of comment properties. Optional on create and update." - } - }, - "additionalProperties": true, - "description": "A comment." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_fields", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { "type": "string", "description": "The ID of the field." }, - "key": { "type": "string", "description": "The key of the field." }, - "name": { - "type": "string", - "description": "The name of the field." - }, - "custom": { - "type": "boolean", - "description": "Whether the field is a custom field." - }, - "orderable": { - "type": "boolean", - "description": "Whether the content of the field can be used to order lists." - }, - "navigable": { - "type": "boolean", - "description": "Whether the field can be used as a column on the issue navigator." - }, - "searchable": { - "type": "boolean", - "description": "Whether the content of the field can be searched." - }, - "clauseNames": { - "uniqueItems": true, - "type": "array", - "description": "The names that can be used to reference the field in an advanced search. For more information, see [Advanced searching - fields reference](https://confluence.atlassian.com/x/gwORLQ).", - "items": { "type": "string" } - }, - "scope": { - "description": "The scope of the field.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - }, - "schema": { - "description": "The data schema for the field.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The data type of the field.", - "readOnly": true - }, - "items": { - "type": "string", - "description": "When the data type is an array, the name of the field items within the array.", - "readOnly": true - }, - "system": { - "type": "string", - "description": "If the field is a system field, the name of the field.", - "readOnly": true - }, - "custom": { - "type": "string", - "description": "If the field is a custom field, the URI of the field.", - "readOnly": true - }, - "customId": { - "type": "integer", - "description": "If the field is a custom field, the custom ID of the field.", - "format": "int64", - "readOnly": true - }, - "configuration": { - "type": "object", - "additionalProperties": { "readOnly": true }, - "description": "If the field is a custom field, the configuration of the field.", - "readOnly": true - } - } - } - }, - "additionalProperties": false, - "description": "Details about a field." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_field_configurations", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the field configuration.", - "format": "int64" - }, - "name": { - "type": "string", - "description": "The name of the field configuration." - }, - "description": { - "type": "string", - "description": "The description of the field configuration." - }, - "isDefault": { - "type": "boolean", - "description": "Whether the field configuration is the default." - } - }, - "additionalProperties": false, - "description": "Details of a field configuration." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_custom_field_contexts", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { "type": "string", "description": "The ID of the context." }, - "name": { - "type": "string", - "description": "The name of the context." - }, - "description": { - "type": "string", - "description": "The description of the context." - }, - "isGlobalContext": { - "type": "boolean", - "description": "Whether the context is global." - }, - "isAnyIssueType": { - "type": "boolean", - "description": "Whether the context apply to all issue types." - } - }, - "additionalProperties": false, - "description": "The details of a custom field context." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_link_types", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "issueLinkTypes": { - "type": "array", - "description": "The issue link type bean.", - "readOnly": true, - "xml": { "name": "issueLinkTypes" }, - "items": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the issue link type and is used as follows:\n\n * In the [ issueLink](#api-rest-api-3-issueLink-post) resource it is the type of issue link. Required on create when `name` isn't provided. Otherwise, read only.\n * In the [ issueLinkType](#api-rest-api-3-issueLinkType-post) resource it is read only." - }, - "name": { - "type": "string", - "description": "The name of the issue link type and is used as follows:\n\n * In the [ issueLink](#api-rest-api-3-issueLink-post) resource it is the type of issue link. Required on create when `id` isn't provided. Otherwise, read only.\n * In the [ issueLinkType](#api-rest-api-3-issueLinkType-post) resource it is required on create and optional on update. Otherwise, read only." - }, - "inward": { - "type": "string", - "description": "The description of the issue link type inward link and is used as follows:\n\n * In the [ issueLink](#api-rest-api-3-issueLink-post) resource it is read only.\n * In the [ issueLinkType](#api-rest-api-3-issueLinkType-post) resource it is required on create and optional on update. Otherwise, read only." - }, - "outward": { - "type": "string", - "description": "The description of the issue link type outward link and is used as follows:\n\n * In the [ issueLink](#api-rest-api-3-issueLink-post) resource it is read only.\n * In the [ issueLinkType](#api-rest-api-3-issueLinkType-post) resource it is required on create and optional on update. Otherwise, read only." - }, - "self": { - "type": "string", - "description": "The URL of the issue link type. Read only.", - "format": "uri", - "readOnly": true - } - } - } - } - }, - "additionalProperties": false, - "description": "A list of issue link type beans." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_navigator_settings", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "label": { - "type": "string", - "description": "The issue navigator column label." - }, - "value": { - "type": "string", - "description": "The issue navigator column value." - } - }, - "additionalProperties": false, - "description": "Details of an issue navigator column item." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_notification_schemes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Expand options that include additional notification scheme details in the response." - }, - "id": { - "type": "integer", - "description": "The ID of the notification scheme.", - "format": "int64" - }, - "self": { "type": "string" }, - "name": { - "type": "string", - "description": "The name of the notification scheme." - }, - "description": { - "type": "string", - "description": "The description of the notification scheme." - }, - "notificationSchemeEvents": { - "type": "array", - "description": "The notification events and associated recipients.", - "items": { - "type": "object", - "properties": { - "event": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the event. The event can be a [Jira system event](https://confluence.atlassian.com/x/8YdKLg#Creatinganotificationscheme-eventsEvents) or a [custom event](https://confluence.atlassian.com/x/AIlKLg).", - "format": "int64" - }, - "name": { - "type": "string", - "description": "The name of the event." - }, - "description": { - "type": "string", - "description": "The description of the event." - } - } - }, - "notifications": { - "type": "array", - "items": { - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Expand options that include additional event notification details in the response." - }, - "id": { - "type": "integer", - "description": "The ID of the notification.", - "format": "int64" - }, - "notificationType": { - "type": "string", - "description": "Identifies the recipients of the notification.", - "enum": [ - "CurrentAssignee", - "Reporter", - "CurrentUser", - "ProjectLead", - "ComponentLead", - "User", - "Group", - "ProjectRole", - "EmailAddress", - "AllWatchers", - "UserCustomField", - "GroupCustomField" - ] - }, - "parameter": { - "type": "string", - "description": "The value of the `notificationType`:\n\n * `User` The `parameter` is the user account ID.\n * `Group` The `parameter` is the group name.\n * `ProjectRole` The `parameter` is the project role ID.\n * `UserCustomField` The `parameter` is the ID of the custom field.\n * `GroupCustomField` The `parameter` is the ID of the custom field." - }, - "group": { - "description": "The specified group.", - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - }, - "field": { - "description": "The custom user or group field.", - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the field." - }, - "key": { - "type": "string", - "description": "The key of the field." - }, - "name": { - "type": "string", - "description": "The name of the field." - }, - "custom": { - "type": "boolean", - "description": "Whether the field is a custom field." - }, - "orderable": { - "type": "boolean", - "description": "Whether the content of the field can be used to order lists." - }, - "navigable": { - "type": "boolean", - "description": "Whether the field can be used as a column on the issue navigator." - }, - "searchable": { - "type": "boolean", - "description": "Whether the content of the field can be searched." - }, - "clauseNames": { - "uniqueItems": true, - "type": "array", - "description": "The names that can be used to reference the field in an advanced search. For more information, see [Advanced searching - fields reference](https://confluence.atlassian.com/x/gwORLQ).", - "items": { "type": "string" } - }, - "scope": { - "description": "The scope of the field.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": [ - "software", - "service_desk", - "business" - ] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - }, - "schema": { - "description": "The data schema for the field.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The data type of the field.", - "readOnly": true - }, - "items": { - "type": "string", - "description": "When the data type is an array, the name of the field items within the array.", - "readOnly": true - }, - "system": { - "type": "string", - "description": "If the field is a system field, the name of the field.", - "readOnly": true - }, - "custom": { - "type": "string", - "description": "If the field is a custom field, the URI of the field.", - "readOnly": true - }, - "customId": { - "type": "integer", - "description": "If the field is a custom field, the custom ID of the field.", - "format": "int64", - "readOnly": true - }, - "configuration": { - "type": "object", - "additionalProperties": { "readOnly": true }, - "description": "If the field is a custom field, the configuration of the field.", - "readOnly": true - } - } - } - } - }, - "emailAddress": { - "type": "string", - "description": "The email address." - }, - "projectRole": { - "description": "The specified project role.", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL the project role details.", - "format": "uri", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project role." - }, - "id": { - "type": "integer", - "description": "The ID of the project role.", - "format": "int64", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the project role.", - "readOnly": true - }, - "actors": { - "type": "array", - "description": "The list of users who act in this role.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the role actor.", - "format": "int64", - "readOnly": true - }, - "displayName": { - "type": "string", - "description": "The display name of the role actor. For users, depending on the user\u2019s privacy setting, this may return an alternative value for the user's name.", - "readOnly": true - }, - "type": { - "type": "string", - "description": "The type of role actor.", - "readOnly": true, - "enum": [ - "atlassian-group-role-actor", - "atlassian-user-role-actor" - ] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "avatarUrl": { - "type": "string", - "description": "The avatar of the role actor.", - "format": "uri", - "readOnly": true - }, - "actorUser": { - "readOnly": true, - "type": "object", - "properties": { - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Returns *unknown* if the record is deleted and corrupted, for example, as the result of a server import.", - "readOnly": true - } - } - }, - "actorGroup": { - "readOnly": true, - "type": "object", - "properties": { - "displayName": { - "type": "string", - "description": "The display name of the group." - }, - "name": { - "type": "string", - "description": "The name of the group" - } - } - } - } - } - }, - "scope": { - "description": "The scope of the role. Indicated for roles associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO).", - "readOnly": true, - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": [ - "software", - "service_desk", - "business" - ] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - }, - "translatedName": { - "type": "string", - "description": "The translated name of the project role." - }, - "currentUserRole": { - "type": "boolean", - "description": "Whether the calling user is part of this role." - }, - "admin": { - "type": "boolean", - "description": "Whether this role is the admin role for the project.", - "readOnly": true - }, - "roleConfigurable": { - "type": "boolean", - "description": "Whether the roles are configurable for this project.", - "readOnly": true - }, - "default": { - "type": "boolean", - "description": "Whether this role is the default role for the project", - "readOnly": true - } - } - }, - "user": { - "description": "The specified user.", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy settings, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy settings, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy settings, this may be returned as null.", - "readOnly": true - }, - "accountType": { - "type": "string", - "description": "The type of account represented by this user. This will be one of 'atlassian' (normal users), 'app' (application user) or 'customer' (Jira Service Desk customer user)", - "readOnly": true - } - } - } - } - } - } - } - } - }, - "scope": { - "description": "The scope of the notification scheme.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - } - }, - "additionalProperties": false, - "description": "Details about a notification scheme." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_priorities", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the issue priority." - }, - "statusColor": { - "type": "string", - "description": "The color used to indicate the issue priority." - }, - "description": { - "type": "string", - "description": "The description of the issue priority." - }, - "iconUrl": { - "type": "string", - "description": "The URL of the icon for the issue priority." - }, - "name": { - "type": "string", - "description": "The name of the issue priority." - }, - "id": { - "type": "string", - "description": "The ID of the issue priority." - } - }, - "additionalProperties": true, - "description": "An issue priority." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_properties", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the property. Required on create and update." - }, - "value": { - "description": "The value of the property. Required on create and update." - } - }, - "additionalProperties": false, - "description": "An entity property, for more information see [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/)." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_remote_links", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the link.", - "format": "int64" - }, - "self": { - "type": "string", - "description": "The URL of the link.", - "format": "uri" - }, - "globalId": { - "type": "string", - "description": "The global ID of the link, such as the ID of the item on the remote system." - }, - "application": { - "description": "Details of the remote application the linked item is in.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The name-spaced type of the application, used by registered rendering apps." - }, - "name": { - "type": "string", - "description": "The name of the application. Used in conjunction with the (remote) object icon title to display a tooltip for the link's icon. The tooltip takes the format \"\\[application name\\] icon title\". Blank items are excluded from the tooltip title. If both items are blank, the icon tooltop displays as \"Web Link\". Grouping and sorting of links may place links without an application name last." - } - } - }, - "relationship": { - "type": "string", - "description": "Description of the relationship between the issue and the linked item." - }, - "object": { - "description": "Details of the item linked to.", - "type": "object", - "properties": { - "url": { - "type": "string", - "description": "The URL of the item." - }, - "title": { - "type": "string", - "description": "The title of the item." - }, - "summary": { - "type": "string", - "description": "The summary details of the item." - }, - "icon": { - "description": "Details of the icon for the item. If no icon is defined, the default link icon is used in Jira.", - "type": "object", - "properties": { - "url16x16": { - "type": "string", - "description": "The URL of an icon that displays at 16x16 pixel in Jira." - }, - "title": { - "type": "string", - "description": "The title of the icon. This is used as follows:\n\n * For a status icon it is used as a tooltip on the icon. If not set, the status icon doesn't display a tooltip in Jira.\n * For the remote object icon it is used in conjunction with the application name to display a tooltip for the link's icon. The tooltip takes the format \"\\[application name\\] icon title\". Blank itemsare excluded from the tooltip title. If both items are blank, the icon tooltop displays as \"Web Link\"." - }, - "link": { - "type": "string", - "description": "The URL of the tooltip, used only for a status icon. If not set, the status icon in Jira is not clickable." - } - } - }, - "status": { - "description": "The status of the item.", - "type": "object", - "properties": { - "resolved": { - "type": "boolean", - "description": "Whether the item is resolved. If set to \"true\", the link to the issue is displayed in a strikethrough font, otherwise the link displays in normal font." - }, - "icon": { - "description": "Details of the icon representing the status. If not provided, no status icon displays in Jira.", - "type": "object", - "properties": { - "url16x16": { - "type": "string", - "description": "The URL of an icon that displays at 16x16 pixel in Jira." - }, - "title": { - "type": "string", - "description": "The title of the icon. This is used as follows:\n\n * For a status icon it is used as a tooltip on the icon. If not set, the status icon doesn't display a tooltip in Jira.\n * For the remote object icon it is used in conjunction with the application name to display a tooltip for the link's icon. The tooltip takes the format \"\\[application name\\] icon title\". Blank itemsare excluded from the tooltip title. If both items are blank, the icon tooltop displays as \"Web Link\"." - }, - "link": { - "type": "string", - "description": "The URL of the tooltip, used only for a status icon. If not set, the status icon in Jira is not clickable." - } - } - } - } - } - } - } - }, - "additionalProperties": false, - "description": "Details of an issue remote link." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_resolutions", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the issue resolution.", - "format": "uri" - }, - "id": { - "type": "string", - "description": "The ID of the issue resolution." - }, - "description": { - "type": "string", - "description": "The description of the issue resolution." - }, - "name": { - "type": "string", - "description": "The name of the issue resolution." - } - }, - "additionalProperties": false, - "description": "Details of an issue resolution." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_security_schemes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "issueSecuritySchemes": { - "type": "array", - "description": "List of security schemes.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the issue security scheme.", - "readOnly": true - }, - "id": { - "type": "integer", - "description": "The ID of the issue security scheme.", - "format": "int64", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the issue security scheme.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the issue security scheme.", - "readOnly": true - }, - "defaultSecurityLevelId": { - "type": "integer", - "description": "The ID of the default security level.", - "format": "int64", - "readOnly": true - }, - "levels": { - "type": "array", - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the issue level security item.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the issue level security item.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the issue level security item.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the issue level security item.", - "readOnly": true - } - } - } - } - } - } - } - }, - "additionalProperties": false, - "description": "List of security schemes." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_type_schemes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the issue type scheme." - }, - "name": { - "type": "string", - "description": "The name of the issue type scheme." - }, - "description": { - "type": "string", - "description": "The description of the issue type scheme." - }, - "defaultIssueTypeId": { - "type": "string", - "description": "The ID of the default issue type of the issue type scheme." - }, - "isDefault": { - "type": "boolean", - "description": "Whether the issue type scheme is the default." - } - }, - "additionalProperties": false, - "description": "Details of an issue type scheme." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_type_screen_schemes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the issue type screen scheme." - }, - "name": { - "type": "string", - "description": "The name of the issue type screen scheme." - }, - "description": { - "type": "string", - "description": "The description of the issue type screen scheme." - } - }, - "additionalProperties": false, - "description": "Details of an issue type screen scheme." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_votes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of these issue vote details.", - "format": "uri", - "readOnly": true - }, - "votes": { - "type": "integer", - "description": "The number of votes on the issue.", - "format": "int64", - "readOnly": true - }, - "hasVoted": { - "type": "boolean", - "description": "Whether the user making this request has voted on the issue.", - "readOnly": true - }, - "voters": { - "type": "array", - "description": "List of the users who have voted on this issue. An empty list is returned when the calling user doesn't have the *View voters and watchers* project permission.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - } - } - }, - "additionalProperties": false, - "description": "The details of votes on an issue." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_watchers", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of these issue watcher details.", - "readOnly": true - }, - "isWatching": { - "type": "boolean", - "description": "Whether the calling user is watching this issue.", - "readOnly": true - }, - "watchCount": { - "type": "integer", - "description": "The number of users watching this issue.", - "format": "int32", - "readOnly": true - }, - "watchers": { - "type": "array", - "description": "Details of the users watching this issue.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy settings, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy settings, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy settings, this may be returned as null.", - "readOnly": true - }, - "accountType": { - "type": "string", - "description": "The type of account represented by this user. This will be one of 'atlassian' (normal users), 'app' (application user) or 'customer' (Jira Service Desk customer user)", - "readOnly": true - } - } - } - } - }, - "additionalProperties": false, - "description": "The details of watchers on an issue." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_worklogs", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the worklog item.", - "format": "uri", - "readOnly": true - }, - "author": { - "description": "Details of the user who created the worklog.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy settings, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy settings, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy settings, this may be returned as null.", - "readOnly": true - }, - "accountType": { - "type": "string", - "description": "The type of account represented by this user. This will be one of 'atlassian' (normal users), 'app' (application user) or 'customer' (Jira Service Desk customer user)", - "readOnly": true - } - } - }, - "updateAuthor": { - "description": "Details of the user who last updated the worklog.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.", - "readOnly": true - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy settings, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy settings, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy settings, this may be returned as null.", - "readOnly": true - }, - "accountType": { - "type": "string", - "description": "The type of account represented by this user. This will be one of 'atlassian' (normal users), 'app' (application user) or 'customer' (Jira Service Desk customer user)", - "readOnly": true - } - } - }, - "comment": { - "description": "A comment about the worklog in [Atlassian Document Format](https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/). Optional when creating or updating a worklog." - }, - "created": { - "type": "string", - "description": "The datetime on which the worklog was created.", - "format": "date-time", - "readOnly": true - }, - "updated": { - "type": "string", - "description": "The datetime on which the worklog was last updated.", - "format": "date-time", - "readOnly": true - }, - "visibility": { - "description": "Details about any restrictions in the visibility of the worklog. Optional when creating or updating a worklog.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "Whether visibility of this item is restricted to a group or role.", - "enum": ["group", "role"] - }, - "value": { - "type": "string", - "description": "The name of the group or role to which visibility of this item is restricted." - } - } - }, - "started": { - "type": "string", - "description": "The datetime on which the worklog effort was started. Required when creating a worklog. Optional when updating a worklog.", - "format": "date-time" - }, - "timeSpent": { - "type": "string", - "description": "The time spent working on the issue as days (\\#d), hours (\\#h), or minutes (\\#m or \\#). Required when creating a worklog if `timeSpentSeconds` isn't provided. Optional when updating a worklog. Cannot be provided if `timeSpentSecond` is provided." - }, - "timeSpentSeconds": { - "type": "integer", - "description": "The time in seconds spent working on the issue. Required when creating a worklog if `timeSpent` isn't provided. Optional when updating a worklog. Cannot be provided if `timeSpent` is provided.", - "format": "int64" - }, - "id": { - "type": "string", - "description": "The ID of the worklog record.", - "readOnly": true - }, - "issueId": { - "type": "string", - "description": "The ID of the issue this worklog is for.", - "readOnly": true - }, - "properties": { - "type": "array", - "description": "Details of properties for the worklog. Optional when creating or updating a worklog.", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the property. Required on create and update." - }, - "value": { - "description": "The value of the property. Required on create and update." - } - } - } - } - }, - "additionalProperties": true, - "description": "Details of a worklog." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "jira_settings", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the application property. The ID and key are the same." - }, - "key": { - "type": "string", - "description": "The key of the application property. The ID and key are the same." - }, - "value": { "type": "string", "description": "The new value." }, - "name": { - "type": "string", - "description": "The name of the application property." - }, - "desc": { - "type": "string", - "description": "The description of the application property." - }, - "type": { - "type": "string", - "description": "The data type of the application property." - }, - "defaultValue": { - "type": "string", - "description": "The default value of the application property." - }, - "example": { "type": "string" }, - "allowedValues": { - "type": "array", - "description": "The allowed values, if applicable.", - "items": { "type": "string" } - } - }, - "additionalProperties": false, - "description": "Details of an application property." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "labels", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": ["object", "null"], - "properties": { - "id": { - "type": ["string", "null"] - }, - "key": { - "type": ["string", "null"] - }, - "value": { - "type": ["string", "null"] - }, - "name": { - "type": ["string", "null"] - }, - "desc": { - "type": ["string", "null"] - }, - "type": { - "type": ["string", "null"] - } - }, - "additionalProperties": true - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "permissions", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "permissions": { - "type": "object", - "description": "List of permissions.", - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Details about permissions." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "permission_schemes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "permissionSchemes": { - "type": "array", - "description": "Permission schemes list.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "The expand options available for the permission scheme.", - "readOnly": true - }, - "id": { - "type": "integer", - "description": "The ID of the permission scheme.", - "format": "int64", - "readOnly": true - }, - "self": { - "type": "string", - "description": "The URL of the permission scheme.", - "format": "uri", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the permission scheme. Must be unique." - }, - "description": { - "type": "string", - "description": "A description for the permission scheme." - }, - "scope": { - "description": "The scope of the permission scheme.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - }, - "permissions": { - "type": "array", - "description": "The permission scheme to create or update. See [About permission schemes and grants](#about-permission-schemes-and-grants) for more information.", - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the permission granted details.", - "format": "int64", - "readOnly": true - }, - "self": { - "type": "string", - "description": "The URL of the permission granted details.", - "format": "uri", - "readOnly": true - }, - "holder": { - "description": "The user or group being granted the permission. It consists of a `type` and a type-dependent `parameter`. See [Holder object](#holder-object) in *Get all permission schemes* for more information.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of permission holder." - }, - "parameter": { - "type": "string", - "description": "The identifier of permission holder." - }, - "expand": { - "type": "string", - "description": "Expand options that include additional permission holder details in the response.", - "readOnly": true - } - } - }, - "permission": { - "type": "string", - "description": "The permission to grant. This permission can be one of the built-in permissions or a custom permission added by an app. See [Built-in permissions](#built-in-permissions) in *Get all permission schemes* for more information about the built-in permissions. See the [project permission](https://developer.atlassian.com/cloud/jira/platform/modules/project-permission/) and [global permission](https://developer.atlassian.com/cloud/jira/platform/modules/global-permission/) module documentation for more information about custom permissions." - } - } - } - } - } - } - } - }, - "additionalProperties": false, - "description": "List of all permission schemes." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "projects", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Expand options that include additional project details in the response.", - "readOnly": true, - "xml": { - "attribute": true - } - }, - "self": { - "type": "string", - "description": "The URL of the project details.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "A brief description of the project.", - "readOnly": true - }, - "lead": { - "description": "The username of the project lead.", - "readOnly": true - }, - "components": { - "type": "array", - "description": "List of the components contained in the project.", - "readOnly": true - }, - "issueTypes": { - "type": "array", - "description": "List of the issue types available in the project.", - "readOnly": true - }, - "url": { - "type": "string", - "description": "A link to information about this project, such as project documentation.", - "readOnly": true - }, - "email": { - "type": "string", - "description": "An email address associated with the project." - }, - "assigneeType": { - "type": "string", - "description": "The default assignee when creating issues for this project.", - "readOnly": true, - "enum": ["PROJECT_LEAD", "UNASSIGNED"] - }, - "versions": { - "type": "array", - "description": "The versions defined in the project. For more information, see [Create version](#api-rest-api-3-version-post).", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "roles": { - "type": "object", - "additionalProperties": { - "type": "string", - "format": "uri", - "readOnly": true - }, - "description": "The name and self URL for each role defined in the project. For more information, see [Create project role](#api-rest-api-3-role-post).", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether the project is simplified.", - "readOnly": true - }, - "style": { - "type": "string", - "description": "The type of the project.", - "readOnly": true, - "enum": ["classic", "next-gen"] - }, - "favourite": { - "type": "boolean", - "description": "Whether the project is selected as a favorite." - }, - "isPrivate": { - "type": "boolean", - "description": "Whether the project is private.", - "readOnly": true - }, - "issueTypeHierarchy": { - "description": "The issue type hierarchy for the project", - "readOnly": true - }, - "permissions": { - "description": "User permissions on the project", - "readOnly": true - }, - "properties": { - "type": "object", - "additionalProperties": { - "readOnly": true - }, - "description": "Map of project properties", - "readOnly": true - }, - "uuid": { - "type": "string", - "description": "Unique ID for next-gen projects.", - "format": "uuid", - "readOnly": true - }, - "insight": { - "description": "Insights about the project.", - "readOnly": true - }, - "deleted": { - "type": "boolean", - "description": "Whether the project is marked as deleted.", - "readOnly": true - }, - "retentionTillDate": { - "type": "string", - "description": "The date when the project is deleted permanently.", - "format": "date-time", - "readOnly": true - }, - "deletedDate": { - "type": "string", - "description": "The date when the project was marked as deleted.", - "format": "date-time", - "readOnly": true - }, - "deletedBy": { - "description": "The user who marked the project as deleted.", - "readOnly": true - }, - "archived": { - "type": "boolean", - "description": "Whether the project is archived.", - "readOnly": true - }, - "archivedDate": { - "type": "string", - "description": "The date when the project was archived.", - "format": "date-time", - "readOnly": true - }, - "archivedBy": { - "description": "The user who archived the project.", - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Details about a project." - }, - "supported_sync_modes": ["full_refresh"] - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_avatars", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "system": { - "type": "array", - "description": "List of avatars included with Jira. These avatars cannot be deleted.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the avatar." - }, - "owner": { - "type": "string", - "description": "The owner of the avatar. For a system avatar the owner is null (and nothing is returned). For non-system avatars this is the appropriate identifier, such as the ID for a project or the account ID for a user.", - "readOnly": true - }, - "isSystemAvatar": { - "type": "boolean", - "description": "Whether the avatar is a system avatar.", - "readOnly": true - }, - "isSelected": { - "type": "boolean", - "description": "Whether the avatar is used in Jira. For example, shown as a project's avatar.", - "readOnly": true - }, - "isDeletable": { - "type": "boolean", - "description": "Whether the avatar can be deleted.", - "readOnly": true - }, - "fileName": { - "type": "string", - "description": "The file name of the avatar icon. Returned for system avatars.", - "readOnly": true - }, - "urls": { - "type": "object", - "additionalProperties": { - "type": "string", - "format": "uri", - "readOnly": true - }, - "description": "The list of avatar icon URLs.", - "readOnly": true - } - } - } - }, - "custom": { - "type": "array", - "description": "List of avatars added to Jira. These avatars may be deleted.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the avatar." - }, - "owner": { - "type": "string", - "description": "The owner of the avatar. For a system avatar the owner is null (and nothing is returned). For non-system avatars this is the appropriate identifier, such as the ID for a project or the account ID for a user.", - "readOnly": true - }, - "isSystemAvatar": { - "type": "boolean", - "description": "Whether the avatar is a system avatar.", - "readOnly": true - }, - "isSelected": { - "type": "boolean", - "description": "Whether the avatar is used in Jira. For example, shown as a project's avatar.", - "readOnly": true - }, - "isDeletable": { - "type": "boolean", - "description": "Whether the avatar can be deleted.", - "readOnly": true - }, - "fileName": { - "type": "string", - "description": "The file name of the avatar icon. Returned for system avatars.", - "readOnly": true - }, - "urls": { - "type": "object", - "additionalProperties": { - "type": "string", - "format": "uri", - "readOnly": true - }, - "description": "The list of avatar icon URLs.", - "readOnly": true - } - } - } - } - }, - "additionalProperties": false, - "description": "List of project avatars." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_categories", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project category. Required on create, optional on update." - }, - "description": { - "type": "string", - "description": "The description of the project category. Required on create, optional on update." - } - }, - "additionalProperties": false, - "description": "A project category." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_components", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "array", - "description": "The list of items.", - "readOnly": true, - "items": { - "properties": { - "issueCount": { - "type": "integer", - "description": "Count of issues for the component.", - "format": "int64", - "readOnly": true - }, - "self": { - "type": "string", - "description": "The URL for this count of the issues contained in the component.", - "format": "uri", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description for the component.", - "readOnly": true - }, - "project": { - "type": "string", - "description": "The key of the project to which the component is assigned.", - "readOnly": true - }, - "assigneeType": { - "type": "string", - "description": "The nominal user type used to determine the assignee for issues created with this component. See `realAssigneeType` for details on how the type of the user, and hence the user, assigned to issues is determined. Takes the following values:\n\n * `PROJECT_LEAD` the assignee to any issues created with this component is nominally the lead for the project the component is in.\n * `COMPONENT_LEAD` the assignee to any issues created with this component is nominally the lead for the component.\n * `UNASSIGNED` an assignee is not set for issues created with this component.\n * `PROJECT_DEFAULT` the assignee to any issues created with this component is nominally the default assignee for the project that the component is in.", - "readOnly": true, - "enum": [ - "PROJECT_DEFAULT", - "COMPONENT_LEAD", - "PROJECT_LEAD", - "UNASSIGNED" - ] - }, - "lead": { - "description": "The user details for the component's lead user.", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "projectId": { - "type": "integer", - "description": "Not used.", - "format": "int64", - "readOnly": true - }, - "realAssignee": { - "description": "The user assigned to issues created with this component, when `assigneeType` does not identify a valid assignee.", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "isAssigneeTypeValid": { - "type": "boolean", - "description": "Whether a user is associated with `assigneeType`. For example, if the `assigneeType` is set to `COMPONENT_LEAD` but the component lead is not set, then `false` is returned.", - "readOnly": true - }, - "assignee": { - "description": "The details of the user associated with `assigneeType`, if any. See `realAssignee` for details of the user assigned to issues created with this component.", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "realAssigneeType": { - "type": "string", - "description": "The type of the assignee that is assigned to issues created with this component, when an assignee cannot be set from the `assigneeType`. For example, `assigneeType` is set to `COMPONENT_LEAD` but no component lead is set. This property is set to one of the following values:\n\n * `PROJECT_LEAD` when `assigneeType` is `PROJECT_LEAD` and the project lead has permission to be assigned issues in the project that the component is in.\n * `COMPONENT_LEAD` when `assignee`Type is `COMPONENT_LEAD` and the component lead has permission to be assigned issues in the project that the component is in.\n * `UNASSIGNED` when `assigneeType` is `UNASSIGNED` and Jira is configured to allow unassigned issues.\n * `PROJECT_DEFAULT` when none of the preceding cases are true.", - "readOnly": true, - "enum": [ - "PROJECT_DEFAULT", - "COMPONENT_LEAD", - "PROJECT_LEAD", - "UNASSIGNED" - ] - }, - "name": { - "type": "string", - "description": "The name for the component.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The unique identifier for the component.", - "readOnly": true - } - }, - "description": "Details about a component with a count of the issues it contains." - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_email", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "emailAddress": { - "type": "string", - "description": "The email address." - } - }, - "additionalProperties": false, - "description": "A project's sender email address." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_permission_schemes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the issue security scheme.", - "readOnly": true - }, - "id": { - "type": "integer", - "description": "The ID of the issue security scheme.", - "format": "int64", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the issue security scheme.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the issue security scheme.", - "readOnly": true - }, - "defaultSecurityLevelId": { - "type": "integer", - "description": "The ID of the default security level.", - "format": "int64", - "readOnly": true - }, - "levels": { - "type": "array", - "items": { - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the issue level security item.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the issue level security item.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the issue level security item.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the issue level security item.", - "readOnly": true - } - } - } - } - }, - "additionalProperties": false, - "description": "Details about a security scheme." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_types", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the project type.", - "readOnly": true - }, - "formattedKey": { - "type": "string", - "description": "The formatted key of the project type.", - "readOnly": true - }, - "descriptionI18nKey": { - "type": "string", - "description": "The key of the project type's description.", - "readOnly": true - }, - "icon": { - "type": "string", - "description": "The icon of the project type.", - "readOnly": true - }, - "color": { - "type": "string", - "description": "The color of the project type.", - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Details about a project type." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_versions", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "array", - "description": "The list of items.", - "readOnly": true, - "items": { - "properties": { - "expand": { - "type": "string", - "description": "Use [expand](em>#expansion) to include additional information about version in the response. This parameter accepts a comma-separated list. Expand options include:\n\n * `operations` Returns the list of operations available for this version.\n * `issuesstatus` Returns the count of issues in this version for each of the status categories *to do*, *in progress*, *done*, and *unmapped*. The *unmapped* property contains a count of issues with a status other than *to do*, *in progress*, and *done*.\n\nOptional for create and update.", - "xml": { "attribute": true } - }, - "self": { - "type": "string", - "description": "The URL of the version.", - "format": "uri", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the version.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the version. Optional when creating or updating a version." - }, - "name": { - "type": "string", - "description": "The unique name of the version. Required when creating a version. Optional when updating a version. The maximum length is 255 characters." - }, - "archived": { - "type": "boolean", - "description": "Indicates that the version is archived. Optional when creating or updating a version." - }, - "released": { - "type": "boolean", - "description": "Indicates that the version is released. If the version is released a request to release again is ignored. Not applicable when creating a version. Optional when updating a version." - }, - "startDate": { - "type": "string", - "description": "The start date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.", - "format": "date" - }, - "releaseDate": { - "type": "string", - "description": "The release date of the version. Expressed in ISO 8601 format (yyyy-mm-dd). Optional when creating or updating a version.", - "format": "date" - }, - "overdue": { - "type": "boolean", - "description": "Indicates that the version is overdue.", - "readOnly": true - }, - "userStartDate": { - "type": "string", - "description": "The date on which work on this version is expected to start, expressed in the instance's *Day/Month/Year Format* date format.", - "readOnly": true - }, - "userReleaseDate": { - "type": "string", - "description": "The date on which work on this version is expected to finish, expressed in the instance's *Day/Month/Year Format* date format.", - "readOnly": true - }, - "project": { - "type": "string", - "description": "Deprecated. Use `projectId`." - }, - "projectId": { - "type": "integer", - "description": "The ID of the project to which this version is attached. Required when creating a version. Not applicable when updating a version.", - "format": "int64" - }, - "moveUnfixedIssuesTo": { - "type": "string", - "description": "The URL of the self link to the version to which all unfixed issues are moved when a version is released. Not applicable when creating a version. Optional when updating a version.", - "format": "uri" - }, - "operations": { - "type": "array", - "description": "If the expand option `operations` is used, returns the list of operations available for this version.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { "type": "string" }, - "styleClass": { "type": "string" }, - "iconClass": { "type": "string" }, - "label": { "type": "string" }, - "title": { "type": "string" }, - "href": { "type": "string" }, - "weight": { "type": "integer", "format": "int32" } - } - } - }, - "issuesStatusForFixVersion": { - "description": "If the expand option `issuesstatus` is used, returns the count of issues in this version for each of the status categories *to do*, *in progress*, *done*, and *unmapped*. The *unmapped* property contains a count of issues with a status other than *to do*, *in progress*, and *done*.", - "readOnly": true, - "type": "object", - "properties": { - "unmapped": { - "type": "integer", - "description": "Count of issues with a status other than *to do*, *in progress*, and *done*.", - "format": "int64", - "readOnly": true - }, - "toDo": { - "type": "integer", - "description": "Count of issues with status *to do*.", - "format": "int64", - "readOnly": true - }, - "inProgress": { - "type": "integer", - "description": "Count of issues with status *in progress*.", - "format": "int64", - "readOnly": true - }, - "done": { - "type": "integer", - "description": "Count of issues with status *done*.", - "format": "int64", - "readOnly": true - } - } - } - }, - "xml": { "name": "version" } - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "screens", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "array", - "description": "The list of items.", - "readOnly": true, - "items": { - "properties": { - "id": { - "type": "integer", - "description": "The ID of the screen.", - "format": "int64", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the screen.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the screen.", - "readOnly": true - }, - "scope": { - "description": "The scope of the screen.", - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of scope.", - "readOnly": true, - "enum": ["PROJECT", "TEMPLATE"] - }, - "project": { - "description": "The project the item has scope in.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project details.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project." - }, - "key": { - "type": "string", - "description": "The key of the project.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the project.", - "readOnly": true - }, - "projectTypeKey": { - "type": "string", - "description": "The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.", - "readOnly": true, - "enum": ["software", "service_desk", "business"] - }, - "simplified": { - "type": "boolean", - "description": "Whether or not the project is simplified.", - "readOnly": true - }, - "avatarUrls": { - "description": "The URLs of the project's avatars.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "projectCategory": { - "description": "The category the project belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the project category.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the project category.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The name of the project category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The description of the project category.", - "readOnly": true - } - } - } - } - } - } - } - }, - "description": "A screen." - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "screen_tabs", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "required": ["name"], - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the screen tab.", - "format": "int64", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the screen tab. The maximum length is 255 characters." - } - }, - "additionalProperties": false, - "description": "A screen tab." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "screen_tab_fields", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the screen tab field.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the screen tab field. Required on create and update. The maximum length is 255 characters." - } - }, - "additionalProperties": false, - "description": "A screen tab field." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "screen_schemes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "array", - "description": "The list of items.", - "readOnly": true, - "items": { - "properties": { - "id": { - "type": "integer", - "description": "The ID of the screen scheme.", - "format": "int64" - }, - "name": { - "type": "string", - "description": "The name of the screen scheme." - }, - "description": { - "type": "string", - "description": "The description of the screen scheme." - }, - "screens": { - "description": "The IDs of the screens for the screen types of the screen scheme.", - "type": "object", - "properties": { - "edit": { - "type": "integer", - "description": "The ID of the edit screen.", - "format": "int64" - }, - "create": { - "type": "integer", - "description": "The ID of the create screen.", - "format": "int64" - }, - "view": { - "type": "integer", - "description": "The ID of the view screen.", - "format": "int64" - }, - "default": { - "type": "integer", - "description": "The ID of the default screen. Required when creating a screen scheme.", - "format": "int64" - } - } - } - }, - "description": "A screen scheme." - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "time_tracking", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "required": ["key"], - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key for the time tracking provider. For example, *JIRA*." - }, - "name": { - "type": "string", - "description": "The name of the time tracking provider. For example, *JIRA provided time tracking*." - }, - "url": { - "type": "string", - "description": "The URL of the configuration page for the time tracking provider app. For example, */example/config/url*. This property is only returned if the `adminPageKey` property is set in the module descriptor of the time tracking provider app.", - "readOnly": true - } - }, - "additionalProperties": false, - "description": "Details about the time tracking provider." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "users", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user’s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user’s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user’s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user’s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { - "attribute": true - } - } - }, - "additionalProperties": false, - "description": "A user with details as permitted by the user's Atlassian Account privacy settings. However, be aware of these exceptions:\n\n * User record deleted from Atlassian: This occurs as the result of a right to be forgotten request. In this case, `displayName` provides an indication and other parameters have default values or are blank (for example, email is blank).\n * User record corrupted: This occurs as a results of events such as a server import and can only happen to deleted users. In this case, `accountId` returns *unknown* and all other parameters have fallback values.\n * User record unavailable: This usually occurs due to an internal service outage. In this case, all parameters have fallback values." - }, - "supported_sync_modes": ["full_refresh"] - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "workflows", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "array", - "description": "The list of items.", - "readOnly": true, - "items": { - "properties": { - "id": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of the workflow." - } - } - }, - "description": { - "type": "string", - "description": "The description of the workflow." - }, - "transitions": { - "type": "array", - "description": "The transitions of the workflow.", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the transition." - }, - "name": { - "type": "string", - "description": "The name of the transition." - }, - "description": { - "type": "string", - "description": "The description of the transition." - }, - "from": { - "type": "array", - "description": "The statuses the transition can start from.", - "items": { - "type": "string", - "description": "The statuses the transition can start from." - } - }, - "to": { - "type": "string", - "description": "The status the transition goes to." - }, - "type": { - "type": "string", - "description": "The type of the transition.", - "enum": ["global", "initial", "directed"] - }, - "screen": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the screen." - } - } - }, - "rules": { - "type": "object", - "properties": { - "conditions": { - "type": "array", - "description": "The workflow conditions.", - "items": { - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of the transition rule." - }, - "configuration": { - "description": "The configuration of the transition rule. This is currently returned only for some of the rule types. Availability of this property is subject to change." - } - } - } - }, - "validators": { - "type": "array", - "description": "The workflow validators.", - "items": { - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of the transition rule." - }, - "configuration": { - "description": "The configuration of the transition rule. This is currently returned only for some of the rule types. Availability of this property is subject to change." - } - } - } - }, - "postFunctions": { - "type": "array", - "description": "The workflow post functions.", - "items": { - "type": "object", - "properties": { - "type": { - "type": "string", - "description": "The type of the transition rule." - }, - "configuration": { - "description": "The configuration of the transition rule. This is currently returned only for some of the rule types. Availability of this property is subject to change." - } - } - } - } - } - } - } - } - }, - "statuses": { - "type": "array", - "description": "The statuses of the workflow.", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string", - "description": "The ID of the issue status." - }, - "name": { - "type": "string", - "description": "The name of the status in the workflow." - }, - "properties": { - "type": "object", - "properties": { - "issueEditable": { - "type": "boolean", - "description": "Whether issues are editable in this status." - } - } - } - } - } - } - }, - "description": "Details about a workflow." - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "workflow_schemes", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "array", - "description": "The list of items.", - "readOnly": true, - "items": { - "properties": { - "id": { - "type": "integer", - "description": "The ID of the workflow scheme.", - "format": "int64", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the workflow scheme. The name must be unique. The maximum length is 255 characters. Required when creating a workflow scheme." - }, - "description": { - "type": "string", - "description": "The description of the workflow scheme." - }, - "defaultWorkflow": { - "type": "string", - "description": "The name of the default workflow for the workflow scheme. The default workflow has *All Unassigned Issue Types* assigned to it in Jira. If `defaultWorkflow` is not specified when creating a workflow scheme, it is set to *Jira Workflow (jira)*." - }, - "issueTypeMappings": { - "type": "object", - "additionalProperties": { "type": "string" }, - "description": "The issue type to workflow mappings, where each mapping is an issue type ID and workflow name pair. Note that an issue type can only be mapped to one workflow in a workflow scheme." - }, - "originalDefaultWorkflow": { - "type": "string", - "description": "For draft workflow schemes, this property is the name of the default workflow for the original workflow scheme. The default workflow has *All Unassigned Issue Types* assigned to it in Jira.", - "readOnly": true - }, - "originalIssueTypeMappings": { - "type": "object", - "additionalProperties": { "type": "string", "readOnly": true }, - "description": "For draft workflow schemes, this property is the issue type to workflow mappings for the original workflow scheme, where each mapping is an issue type ID and workflow name pair. Note that an issue type can only be mapped to one workflow in a workflow scheme.", - "readOnly": true - }, - "draft": { - "type": "boolean", - "description": "Whether the workflow scheme is a draft or not.", - "readOnly": true - }, - "lastModifiedUser": { - "description": "The user that last modified the draft workflow scheme. A modification is a change to the issue type-project mappings only. This property does not apply to non-draft workflows.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the user.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "accountId": { - "maxLength": 128, - "type": "string", - "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests." - }, - "accountType": { - "type": "string", - "description": "The user account type. Can take the following values:\n\n * `atlassian` regular Atlassian user account\n * `app` system account used for Connect applications and OAuth to represent external systems\n * `customer` Jira Service Desk account representing an external service desk", - "readOnly": true, - "enum": ["atlassian", "app", "customer", "unknown"] - }, - "name": { - "type": "string", - "description": "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." - }, - "emailAddress": { - "type": "string", - "description": "The email address of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "avatarUrls": { - "description": "The avatars of the user.", - "readOnly": true, - "type": "object", - "properties": { - "16x16": { - "type": "string", - "description": "The URL of the item's 16x16 pixel avatar.", - "format": "uri" - }, - "24x24": { - "type": "string", - "description": "The URL of the item's 24x24 pixel avatar.", - "format": "uri" - }, - "32x32": { - "type": "string", - "description": "The URL of the item's 32x32 pixel avatar.", - "format": "uri" - }, - "48x48": { - "type": "string", - "description": "The URL of the item's 48x48 pixel avatar.", - "format": "uri" - } - } - }, - "displayName": { - "type": "string", - "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", - "readOnly": true - }, - "active": { - "type": "boolean", - "description": "Whether the user is active.", - "readOnly": true - }, - "timeZone": { - "type": "string", - "description": "The time zone specified in the user's profile. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "locale": { - "type": "string", - "description": "The locale of the user. Depending on the user\u2019s privacy setting, this may be returned as null.", - "readOnly": true - }, - "groups": { - "description": "The groups that the user belongs to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The name of group." - }, - "self": { - "type": "string", - "description": "The URL for these group details.", - "format": "uri", - "readOnly": true - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "applicationRoles": { - "description": "The application roles the user is assigned to.", - "readOnly": true, - "type": "object", - "properties": { - "size": { - "type": "integer", - "format": "int32", - "xml": { "attribute": true } - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "The key of the application role." - }, - "groups": { - "uniqueItems": true, - "type": "array", - "description": "The groups associated with the application role.", - "items": { "type": "string" } - }, - "name": { - "type": "string", - "description": "The display name of the application role." - }, - "defaultGroups": { - "uniqueItems": true, - "type": "array", - "description": "The groups that are granted default access for this application role.", - "items": { "type": "string" } - }, - "selectedByDefault": { - "type": "boolean", - "description": "Determines whether this application role should be selected by default on user creation." - }, - "defined": { - "type": "boolean", - "description": "Deprecated." - }, - "numberOfSeats": { - "type": "integer", - "description": "The maximum count of users on your license.", - "format": "int32" - }, - "remainingSeats": { - "type": "integer", - "description": "The count of users remaining on your license.", - "format": "int32" - }, - "userCount": { - "type": "integer", - "description": "The number of users counting against your license.", - "format": "int32" - }, - "userCountDescription": { - "type": "string", - "description": "The [type of users](https://confluence.atlassian.com/x/lRW3Ng) being counted against your license." - }, - "hasUnlimitedSeats": { "type": "boolean" }, - "platform": { - "type": "boolean", - "description": "Indicates if the application role belongs to Jira platform (`jira-core`)." - } - } - } - }, - "pagingCallback": { "type": "object" }, - "callback": { "type": "object" }, - "max-results": { - "type": "integer", - "format": "int32", - "xml": { "name": "max-results", "attribute": true } - } - } - }, - "expand": { - "type": "string", - "description": "Expand options that include additional user details in the response.", - "readOnly": true, - "xml": { "attribute": true } - } - } - }, - "lastModified": { - "type": "string", - "description": "The date-time that the draft workflow scheme was last modified. A modification is a change to the issue type-project mappings only. This property does not apply to non-draft workflows.", - "readOnly": true - }, - "self": { "type": "string", "format": "uri", "readOnly": true }, - "updateDraftIfNeeded": { - "type": "boolean", - "description": "Whether to create or update a draft workflow scheme when updating an active workflow scheme. An active workflow scheme is a workflow scheme that is used by at least one project. The following examples show how this property works:\n\n * Update an active workflow scheme with `updateDraftIfNeeded` set to `true`: If a draft workflow scheme exists, it is updated. Otherwise, a draft workflow scheme is created.\n * Update an active workflow scheme with `updateDraftIfNeeded` set to `false`: An error is returned, as active workflow schemes cannot be updated.\n * Update an inactive workflow scheme with `updateDraftIfNeeded` set to `true`: The workflow scheme is updated, as inactive workflow schemes do not require drafts to update.\n\nDefaults to `false`." - }, - "issueTypes": { - "type": "object", - "description": "The issue types available in Jira.", - "readOnly": true - } - }, - "description": "Details about a workflow scheme." - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "workflow_statuses", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the status.", - "readOnly": true - }, - "description": { - "type": "string", - "description": "The description of the status.", - "readOnly": true - }, - "iconUrl": { - "type": "string", - "description": "The URL of the icon used to represent the status.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the status.", - "readOnly": true - }, - "id": { - "type": "string", - "description": "The ID of the status.", - "readOnly": true - }, - "statusCategory": { - "description": "The category assigned to the status.", - "readOnly": true, - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the status category.", - "readOnly": true - }, - "id": { - "type": "integer", - "description": "The ID of the status category.", - "format": "int64", - "readOnly": true - }, - "key": { - "type": "string", - "description": "The key of the status category.", - "readOnly": true - }, - "colorName": { - "type": "string", - "description": "The name of the color used to represent the status category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the status category.", - "readOnly": true - } - } - } - }, - "additionalProperties": true, - "description": "A status." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "workflow_status_categories", - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "self": { - "type": "string", - "description": "The URL of the status category.", - "readOnly": true - }, - "id": { - "type": "integer", - "description": "The ID of the status category.", - "format": "int64", - "readOnly": true - }, - "key": { - "type": "string", - "description": "The key of the status category.", - "readOnly": true - }, - "colorName": { - "type": "string", - "description": "The name of the color used to represent the status category.", - "readOnly": true - }, - "name": { - "type": "string", - "description": "The name of the status category.", - "readOnly": true - } - }, - "additionalProperties": true, - "description": "A status category." - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - } - ] -} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/inc_configured_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/inc_configured_catalog.json deleted file mode 100644 index e7b087c991b1..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/inc_configured_catalog.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "issues", - "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updated"] - }, - "sync_mode": "incremental", - "cursor_field": ["updated"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "issue_worklogs", - "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updated"] - }, - "sync_mode": "incremental", - "cursor_field": ["updated"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "issue_comments", - "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updated"] - }, - "sync_mode": "incremental", - "cursor_field": ["updated"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "pull_requests", - "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updated"] - }, - "sync_mode": "incremental", - "cursor_field": ["updated"], - "destination_sync_mode": "append" - } - ] -} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/issue_worklogs_configured_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/issue_worklogs_configured_catalog.json deleted file mode 100644 index 9988b4462bef..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/issue_worklogs_configured_catalog.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "issue_worklogs", - "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updated"] - }, - "sync_mode": "incremental", - "cursor_field": ["updated"], - "destination_sync_mode": "append" - } - ] -} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/issues_configured_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/issues_configured_catalog.json deleted file mode 100644 index 1c4ec982815c..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/issues_configured_catalog.json +++ /dev/null @@ -1,166 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "issues", - "json_schema": {}, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["created"] - }, - "sync_mode": "incremental", - "cursor_field": ["created"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "issue_comments", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_fields", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_field_configurations", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_custom_field_contexts", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_link_types", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_navigator_settings", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_notification_schemes", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_priorities", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_remote_links", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_resolutions", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_security_schemes", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_type_schemes", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_type_screen_schemes", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_votes", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "issue_watchers", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - } - ] -} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/labels_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/labels_catalog.json deleted file mode 100644 index 555962f6462b..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/labels_catalog.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "labels", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - } - ] -} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/projects_configured_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/projects_configured_catalog.json deleted file mode 100644 index cba9ac942190..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/projects_configured_catalog.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "projects", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"] - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_avatars", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_categories", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_components", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_email", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_permission_schemes", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_types", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "project_versions", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - } - ] -} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/users_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/users_catalog.json deleted file mode 100644 index ae547e4af2cf..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/users_catalog.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "users", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"] - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "users_groups_detailed", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"] - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - } - ] -} diff --git a/airbyte-integrations/connectors/source-jira/integration_tests/workflows_configured_catalog.json b/airbyte-integrations/connectors/source-jira/integration_tests/workflows_configured_catalog.json deleted file mode 100644 index 52bca37c385a..000000000000 --- a/airbyte-integrations/connectors/source-jira/integration_tests/workflows_configured_catalog.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "workflows", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "workflow_schemes", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "workflow_statuses", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "workflow_status_categories", - "json_schema": {}, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - } - ] -} diff --git a/airbyte-integrations/connectors/source-jira/setup.py b/airbyte-integrations/connectors/source-jira/setup.py index 709b23f5531c..0c8e9d5b4240 100644 --- a/airbyte-integrations/connectors/source-jira/setup.py +++ b/airbyte-integrations/connectors/source-jira/setup.py @@ -5,11 +5,12 @@ from setuptools import find_packages, setup -MAIN_REQUIREMENTS = ["airbyte-cdk~=0.1", "requests==2.25.1", "pendulum>=1.2.0", "vcrpy==4.1.1"] +MAIN_REQUIREMENTS = ["airbyte-cdk~=0.14", "requests==2.25.1", "pendulum~=2.1.2"] TEST_REQUIREMENTS = [ - "pytest==6.1.2", + "pytest==6.2.5", "source-acceptance-test", + "responses~=0.22.0", ] setup( diff --git a/airbyte-integrations/connectors/source-jira/source_jira/schemas/epics.json b/airbyte-integrations/connectors/source-jira/source_jira/schemas/epics.json deleted file mode 100644 index 02a72bc54d69..000000000000 --- a/airbyte-integrations/connectors/source-jira/source_jira/schemas/epics.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "expand": { - "type": "string", - "description": "Expand options that include additional issue details in the response.", - "readOnly": true, - "xml": { - "attribute": true - } - }, - "id": { - "type": "string", - "description": "The ID of the epic.", - "readOnly": true - }, - "self": { - "type": "string", - "description": "The URL of the epic details.", - "format": "uri", - "readOnly": true - }, - "key": { - "type": "string", - "description": "The key of the epic.", - "readOnly": true - }, - "fields": { - "type": "object", - "properties": { - "summary": { - "type": ["string", "null"], - "description": "Epic summary" - }, - "description": { - "type": ["string", "null", "object"], - "description": "Epic description" - }, - "status": { - "type": ["string", "object"], - "description": "Epic status" - }, - "updated": { - "type": ["string", "null"], - "format": "date-time", - "description": "This field is not shown in schema / swagger, but exists in records and we use it as cursor fiekd." - } - }, - "additionalProperties": true - }, - "projectId": { - "type": "string", - "description": "The ID of the project containing the epic.", - "readOnly": true - }, - "projectKey": { - "type": "string", - "description": "The key of the project containing the epic.", - "readOnly": true - }, - "created": { - "type": ["string", "null"], - "format": "date-time", - "description": "This field transformed from fields attr", - "readOnly": true - }, - "updated": { - "type": ["string", "null"], - "format": "date-time", - "description": "This field transformed from fields attr", - "readOnly": true - } - }, - "additionalProperties": true -} diff --git a/airbyte-integrations/connectors/source-jira/source_jira/schemas/labels.json b/airbyte-integrations/connectors/source-jira/source_jira/schemas/labels.json index 5430832a7379..f84642e8df5c 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/schemas/labels.json +++ b/airbyte-integrations/connectors/source-jira/source_jira/schemas/labels.json @@ -1,24 +1,8 @@ { "type": ["object", "null"], "properties": { - "id": { - "type": ["string", "null"] - }, - "key": { - "type": ["string", "null"] - }, - "value": { - "type": ["string", "null"] - }, - "name": { - "type": ["string", "null"] - }, - "desc": { - "type": ["string", "null"] - }, - "type": { + "label": { "type": ["string", "null"] } - }, - "additionalProperties": true + } } diff --git a/airbyte-integrations/connectors/source-jira/source_jira/schemas/project_email.json b/airbyte-integrations/connectors/source-jira/source_jira/schemas/project_email.json index 04238afd029a..e7e7041c8631 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/schemas/project_email.json +++ b/airbyte-integrations/connectors/source-jira/source_jira/schemas/project_email.json @@ -2,6 +2,9 @@ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { + "projectId": { + "type": "string" + }, "emailAddress": { "type": "string", "description": "The email address." diff --git a/airbyte-integrations/connectors/source-jira/source_jira/source.py b/airbyte-integrations/connectors/source-jira/source_jira/source.py index e73b06c3fc17..ce7b454d19cf 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/source.py +++ b/airbyte-integrations/connectors/source-jira/source_jira/source.py @@ -2,15 +2,13 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # -from base64 import b64encode -from json.decoder import JSONDecodeError from typing import Any, List, Mapping, Optional, Tuple +import pendulum from airbyte_cdk import AirbyteLogger -from airbyte_cdk.models import SyncMode from airbyte_cdk.sources import AbstractSource from airbyte_cdk.sources.streams import Stream -from airbyte_cdk.sources.streams.http.auth import TokenAuthenticator +from airbyte_cdk.sources.streams.http.auth import BasicHttpAuthenticator from .streams import ( ApplicationRoles, @@ -18,7 +16,6 @@ BoardIssues, Boards, Dashboards, - Epics, Filters, FilterSharing, Groups, @@ -67,46 +64,42 @@ WorkflowStatusCategories, WorkflowStatuses, ) +from .utils import read_full_refresh class SourceJira(AbstractSource): + def _validate_and_transform(self, config: Mapping[str, Any]): + start_date = config.get("start_date") + if start_date: + config["start_date"] = pendulum.parse(start_date) + return config + @staticmethod def get_authenticator(config: Mapping[str, Any]): - token = b64encode(bytes(config["email"] + ":" + config["api_token"], "utf-8")).decode("ascii") - authenticator = TokenAuthenticator(token, auth_method="Basic") - return authenticator + return BasicHttpAuthenticator(config["email"], config["api_token"]) def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, Optional[Any]]: - alive = True - error_msg = None - - try: - authenticator = self.get_authenticator(config) - args = {"authenticator": authenticator, "domain": config["domain"], "projects": config["projects"]} - issue_resolutions = IssueResolutions(**args) - for item in issue_resolutions.read_records(sync_mode=SyncMode.full_refresh): - continue - except ConnectionError as error: - alive, error_msg = False, repr(error) - # If the input domain is incorrect or doesn't exist, then the response would be empty, resulting in a - # JSONDecodeError - except JSONDecodeError: - alive, error_msg = ( - False, - "Unable to connect to the Jira API with the provided credentials. Please make sure the input " - "credentials and environment are correct.", - ) - - return alive, error_msg + config = self._validate_and_transform(config) + authenticator = self.get_authenticator(config) + kwargs = {"authenticator": authenticator, "domain": config["domain"], "projects": config["projects"]} + labels_stream = Labels(**kwargs) + next(read_full_refresh(labels_stream), None) + # check projects + projects_stream = Projects(**kwargs) + projects = {project["key"] for project in read_full_refresh(projects_stream)} + unknown_projects = set(config["projects"]) - projects + if unknown_projects: + return False, "unknown project(s): " + ", ".join(unknown_projects) + return True, None def streams(self, config: Mapping[str, Any]) -> List[Stream]: + config = self._validate_and_transform(config) authenticator = self.get_authenticator(config) args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} - incremental_args = {**args, "start_date": config.get("start_date", "")} + incremental_args = {**args, "start_date": config.get("start_date")} render_fields = config.get("render_fields", False) issues_stream = Issues( **incremental_args, - additional_fields=config.get("additional_fields", []), expand_changelog=config.get("expand_issue_changelog", False), render_fields=render_fields, ) @@ -122,7 +115,6 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: Boards(**args), BoardIssues(**incremental_args), Dashboards(**args), - Epics(render_fields=render_fields, **incremental_args), Filters(**args), FilterSharing(**args), Groups(**args), diff --git a/airbyte-integrations/connectors/source-jira/source_jira/spec.json b/airbyte-integrations/connectors/source-jira/source_jira/spec.json index 1f21bc250d87..5101bba702ff 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/spec.json +++ b/airbyte-integrations/connectors/source-jira/source_jira/spec.json @@ -11,19 +11,22 @@ "type": "string", "title": "API Token", "description": "Jira API Token. See the docs for more information on how to generate this key.", - "airbyte_secret": true + "airbyte_secret": true, + "order": 0 }, "domain": { "type": "string", "title": "Domain", "examples": ["domainname.atlassian.net"], "pattern": "^[a-zA-Z0-9._-]*\\.atlassian\\.net$", - "description": "The Domain for your Jira account, e.g. airbyteio.atlassian.net" + "description": "The Domain for your Jira account, e.g. airbyteio.atlassian.net", + "order": 1 }, "email": { "type": "string", "title": "Email", - "description": "The user email for your Jira account." + "description": "The user email for your Jira account.", + "order": 2 }, "projects": { "type": "array", @@ -32,41 +35,38 @@ "type": "string" }, "examples": ["PROJ1", "PROJ2"], - "description": "List of Jira project keys to replicate data for." + "description": "List of Jira project keys to replicate data for.", + "order": 3 }, "start_date": { "type": "string", "title": "Start Date", - "description": "The date from which you'd like to replicate data for Jira in the format YYYY-MM-DDT00:00:00Z. All data generated after this date will be replicated. Note that it will be used only in the following incremental streams: issues.", + "description": "The date from which you want to replicate data from Jira, use the format YYYY-MM-DDT00:00:00Z. Note that this field only applies to certain streams, and only data generated on or after the start date will be replicated. For more information, refer to the documentation.", "examples": ["2021-03-01T00:00:00Z"], - "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$" - }, - "additional_fields": { - "type": "array", - "title": "Additional Fields", - "items": { - "type": "string" - }, - "description": "List of additional fields to include in replicating issues.", - "examples": ["customfield_10096", "customfield_10071"] + "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$", + "format": "date-time", + "order": 4 }, "expand_issue_changelog": { "type": "boolean", "title": "Expand Issue Changelog", "description": "Expand the changelog when replicating issues.", - "default": false + "default": false, + "order": 5 }, "render_fields": { "type": "boolean", "title": "Render Issue Fields", "description": "Render issue fields in HTML format in addition to Jira JSON-like format.", - "default": false + "default": false, + "order": 6 }, "enable_experimental_streams": { "type": "boolean", "title": "Enable Experimental Streams", "description": "Allow the use of experimental streams which rely on undocumented Jira API endpoints. See https://docs.airbyte.com/integrations/sources/jira#experimental-tables for more info.", - "default": false + "default": false, + "order": 7 } } } diff --git a/airbyte-integrations/connectors/source-jira/source_jira/streams.py b/airbyte-integrations/connectors/source-jira/source_jira/streams.py index cecf82562333..45fde4ece011 100644 --- a/airbyte-integrations/connectors/source-jira/source_jira/streams.py +++ b/airbyte-integrations/connectors/source-jira/source_jira/streams.py @@ -5,13 +5,15 @@ import re import urllib.parse as urlparse from abc import ABC -from typing import Any, Dict, Iterable, List, Mapping, MutableMapping, Optional -from urllib.parse import parse_qs +from typing import Any, Iterable, List, Mapping, MutableMapping, Optional +from urllib.parse import parse_qsl import pendulum import requests -from airbyte_cdk.models import SyncMode from airbyte_cdk.sources.streams.http import HttpStream +from requests.exceptions import HTTPError + +from .utils import read_full_refresh, read_incremental, safe_max API_VERSION = 3 @@ -21,46 +23,48 @@ class JiraStream(HttpStream, ABC): Jira API Reference: https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/ """ + page_size = 50 primary_key: Optional[str] = "id" - parse_response_root: Optional[str] = None + extract_field: Optional[str] = None + api_v1 = False + skip_http_status_codes = [] def __init__(self, domain: str, projects: List[str], **kwargs): - super(JiraStream, self).__init__(**kwargs) + super().__init__(**kwargs) self._domain = domain self._projects = projects @property def url_base(self) -> str: + if self.api_v1: + return f"https://{self._domain}/rest/agile/1.0/" return f"https://{self._domain}/rest/api/{API_VERSION}/" def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - params = {} - response_data = response.json() - if "nextPage" in response_data: - next_page = response_data["nextPage"] - params = parse_qs(urlparse.urlparse(next_page).query) - else: - if all(paging_metadata in response_data for paging_metadata in ("startAt", "maxResults", "total")): - start_at = response_data["startAt"] - max_results = int(response_data["maxResults"]) - total = response_data["total"] - end_at = start_at + max_results - if not end_at > total: - params["startAt"] = end_at - params["maxResults"] = max_results - return params + response_json = response.json() + if isinstance(response_json, dict): + if response_json.get("isLast"): + return + startAt = response_json.get("startAt") + if startAt is not None: + startAt += response_json["maxResults"] + if startAt < response_json["total"]: + return {"startAt": startAt} + elif isinstance(response_json, list): + if len(response_json) == self.page_size: + query_params = dict(parse_qsl(urlparse.urlparse(response.url).query)) + startAt = int(query_params.get("startAt", 0)) + self.page_size + return {"startAt": startAt} def request_params( self, stream_state: Mapping[str, Any], - stream_slice: Mapping[str, Any], - next_page_token: Optional[Mapping[str, Any]] = None, + stream_slice: Mapping[str, Any] = None, + next_page_token: Mapping[str, Any] = None, ) -> MutableMapping[str, Any]: - params: Dict[str, str] = {} - + params = {"maxResults": self.page_size} if next_page_token: params.update(next_page_token) - return params def request_headers(self, **kwargs) -> Mapping[str, Any]: @@ -68,7 +72,7 @@ def request_headers(self, **kwargs) -> Mapping[str, Any]: def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: response_json = response.json() - records = response_json if not self.parse_response_root else response_json.get(self.parse_response_root, []) + records = response_json if not self.extract_field else response_json.get(self.extract_field, []) if isinstance(records, list): for record in records: yield self.transform(record=record, **kwargs) @@ -78,64 +82,76 @@ def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapp def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: return record - -class V1ApiJiraStream(JiraStream, ABC): - @property - def url_base(self) -> str: - return f"https://{self._domain}/rest/agile/1.0/" + def read_records(self, **kwargs) -> Iterable[Mapping[str, Any]]: + try: + yield from super().read_records(**kwargs) + except HTTPError as e: + if not (self.skip_http_status_codes and e.response.status_code in self.skip_http_status_codes): + raise e class StartDateJiraStream(JiraStream, ABC): - def __init__(self, start_date: str = "", **kwargs): + def __init__(self, start_date: Optional[pendulum.DateTime] = None, **kwargs): super().__init__(**kwargs) self._start_date = start_date + +class IncrementalJiraStream(StartDateJiraStream, ABC): + def __init__(self, **kwargs): + super().__init__(**kwargs) + self._starting_point_cache = {} + + def get_updated_state(self, current_stream_state: MutableMapping[str, Any], latest_record: Mapping[str, Any]): + updated_state = latest_record[self.cursor_field] + stream_state_value = current_stream_state.get(self.cursor_field) + if stream_state_value: + updated_state = max(updated_state, stream_state_value) + current_stream_state[self.cursor_field] = updated_state + return current_stream_state + def jql_compare_date(self, stream_state: Mapping[str, Any]) -> Optional[str]: - issues_state = None - cursor_exist_in_state: Any = False - cursor_field = self.cursor_field - - if isinstance(self.cursor_field, str): - cursor_exist_in_state = stream_state.get(self.cursor_field) - elif isinstance(self.cursor_field, list) and self.cursor_field: - cursor_exist_in_state = stream_state - for cursor_part in self.cursor_field: - cursor_exist_in_state = stream_state.get(cursor_part) - cursor_field = cursor_field[-1] - - if cursor_exist_in_state: - issues_state = pendulum.parse(stream_state.get(cursor_field, self._start_date)) - elif self._start_date: - issues_state = pendulum.parse(self._start_date) - if issues_state: - issues_state_row = issues_state.strftime("%Y/%m/%d %H:%M") - return f"{cursor_field} > '{issues_state_row}'" - return None + compare_date = self.get_starting_point(stream_state) + if compare_date: + compare_date = compare_date.strftime("%Y/%m/%d %H:%M") + return f"{self.cursor_field} >= '{compare_date}'" + def get_starting_point(self, stream_state: Mapping[str, Any]) -> Optional[pendulum.DateTime]: + if self.cursor_field not in self._starting_point_cache: + self._starting_point_cache[self.cursor_field] = self._get_starting_point(stream_state=stream_state) + return self._starting_point_cache[self.cursor_field] -class IncrementalJiraStream(StartDateJiraStream, ABC): - def get_updated_state(self, current_stream_state: MutableMapping[str, Any], latest_record: Mapping[str, Any]) -> Mapping[str, Any]: - cursor_field = self.cursor_field - if isinstance(cursor_field, str): - latest_record = latest_record.get(self.cursor_field) - elif isinstance(cursor_field, list): - for cursor_part in cursor_field: - latest_record = latest_record.get(cursor_part, {}) - cursor_field = cursor_field[-1] - latest_record_date = pendulum.parse(latest_record) - stream_state = current_stream_state.get(cursor_field) + def _get_starting_point(self, stream_state: Mapping[str, Any]) -> Optional[pendulum.DateTime]: if stream_state: - return {cursor_field: str(max(latest_record_date, pendulum.parse(stream_state)))} - else: - return {cursor_field: str(latest_record_date)} + stream_state_value = stream_state.get(self.cursor_field) + if stream_state_value: + stream_state_value = pendulum.parse(stream_state_value) + return safe_max(stream_state_value, self._start_date) + return self._start_date + + def read_records( + self, stream_slice: Optional[Mapping[str, Any]] = None, stream_state: Mapping[str, Any] = None, **kwargs + ) -> Iterable[Mapping[str, Any]]: + start_point = self.get_starting_point(stream_state=stream_state) + for record in super().read_records(stream_slice=stream_slice, stream_state=stream_state, **kwargs): + cursor_value = pendulum.parse(record[self.cursor_field]) + if not start_point or cursor_value >= start_point: + yield record + + def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: + self._starting_point_cache.clear() + yield from super().stream_slices(**kwargs) class ApplicationRoles(JiraStream): """ - https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-application-roles/#api-rest-api-3-applicationrole-key-get + https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-application-roles/#api-rest-api-3-applicationrole-get """ - primary_key = None + primary_key = "key" + skip_http_status_codes = [ + # Application access permissions can only be edited or viewed by administrators. + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "applicationrole" @@ -146,61 +162,55 @@ class Avatars(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-avatars/#api-rest-api-3-avatar-type-system-get """ - parse_response_root = "system" + extract_field = "system" + avatar_types = ("issuetype", "project", "user") def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - avatar_type = stream_slice["avatar_type"] - return f"avatar/{avatar_type}/system" + return f"avatar/{stream_slice['avatar_type']}/system" - def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - avatar_types = ("issuetype", "project", "user") - for avatar_type in avatar_types: - yield from super().read_records(stream_slice={"avatar_type": avatar_type}, **kwargs) + def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: + for avatar_type in self.avatar_types: + yield {"avatar_type": avatar_type} -class Boards(V1ApiJiraStream): +class Boards(JiraStream): """ https://developer.atlassian.com/cloud/jira/software/rest/api-group-other-operations/#api-agile-1-0-board-get """ - parse_response_root = "values" + extract_field = "values" use_cache = True + api_v1 = True def path(self, **kwargs) -> str: return "board" - def request_params( - self, - stream_state: Mapping[str, Any], - stream_slice: Mapping[str, Any], - next_page_token: Optional[Mapping[str, Any]] = None, - ) -> MutableMapping[str, Any]: - params = super().request_params(stream_state=stream_state, stream_slice=stream_slice, next_page_token=next_page_token) - params["projectKeyOrId"] = stream_slice["project_id"] - return params - - def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for project in projects_stream.read_records(sync_mode=SyncMode.full_refresh): - yield from super().read_records(stream_slice={"project_id": project["id"], "project_key": project["key"]}, **kwargs) + def read_records(self, **kwargs) -> Iterable[Mapping[str, Any]]: + for board in super().read_records(**kwargs): + if not self._projects or board["location"]["projectKey"] in self._projects: + yield board def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: - record["projectId"] = stream_slice["project_id"] - record["projectKey"] = stream_slice["project_key"] + record["projectId"] = str(record["location"]["projectId"]) + record["projectKey"] = record["location"]["projectKey"] return record -class BoardIssues(V1ApiJiraStream, IncrementalJiraStream): +class BoardIssues(IncrementalJiraStream): """ - https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#api-agile-1-0-board-boardid-issue-get + https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#api-rest-agile-1-0-board-boardid-issue-get """ cursor_field = "updated" - parse_response_root = "issues" + extract_field = "issues" + api_v1 = True + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.boards_stream = Boards(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - board_id = stream_slice["board_id"] - return f"board/{board_id}/issue" + return f"board/{stream_slice['board_id']}/issue" def request_params( self, @@ -208,24 +218,21 @@ def request_params( stream_slice: Mapping[str, Any], next_page_token: Optional[Mapping[str, Any]] = None, ) -> MutableMapping[str, Any]: - stream_state = stream_state or {} params = super().request_params(stream_state=stream_state, stream_slice=stream_slice, next_page_token=next_page_token) - params["fields"] = ["key", "updated"] + params["fields"] = ["key", "created", "updated"] jql = self.jql_compare_date(stream_state) if jql: params["jql"] = jql return params def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - boards_stream = Boards(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for board in boards_stream.read_records(sync_mode=SyncMode.full_refresh): + for board in read_full_refresh(self.boards_stream): yield from super().read_records(stream_slice={"board_id": board["id"]}, **kwargs) def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: record["boardId"] = stream_slice["board_id"] - issue_fields = record["fields"] - record["created"] = issue_fields.get("created") - record["updated"] = issue_fields.get("updated") or issue_fields.get("created") + record["created"] = record["fields"]["created"] + record["updated"] = record["fields"]["updated"] return record @@ -234,62 +241,18 @@ class Dashboards(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-dashboards/#api-rest-api-3-dashboard-get """ - parse_response_root = "dashboards" + extract_field = "dashboards" def path(self, **kwargs) -> str: return "dashboard" -class Epics(IncrementalJiraStream): - """ - https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-get - """ - - def __init__(self, render_fields: bool = False, **kwargs): - super().__init__(**kwargs) - self._render_fields = render_fields - - cursor_field = "updated" - parse_response_root = "issues" - - def path(self, **kwargs) -> str: - return "search" - - def request_params( - self, - stream_state: Mapping[str, Any], - stream_slice: Mapping[str, Any], - next_page_token: Optional[Mapping[str, Any]] = None, - ) -> MutableMapping[str, Any]: - project_id = stream_slice["project_id"] - params = super().request_params(stream_state=stream_state, stream_slice=stream_slice, next_page_token=next_page_token) - params["fields"] = ["summary", "description", "status", "updated"] - jql_parts = ["issuetype = 'Epic'", f"project = '{project_id}'", self.jql_compare_date(stream_state)] - params["jql"] = " and ".join([p for p in jql_parts if p]) - if self._render_fields: - params["expand"] = "renderedFields" - return params - - def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for project in projects_stream.read_records(sync_mode=SyncMode.full_refresh): - yield from super().read_records(stream_slice={"project_id": project["id"], "project_key": project["key"]}, **kwargs) - - def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: - record["projectId"] = stream_slice["project_id"] - record["projectKey"] = stream_slice["project_key"] - issue_fields = record["fields"] - record["created"] = issue_fields.get("created") - record["updated"] = issue_fields.get("updated") or issue_fields.get("created") - return record - - class Filters(JiraStream): """ https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-filters/#api-rest-api-3-filter-search-get """ - parse_response_root = "values" + extract_field = "values" use_cache = True def path(self, **kwargs) -> str: @@ -306,13 +269,15 @@ class FilterSharing(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-filter-sharing/#api-rest-api-3-filter-id-permission-get """ + def __init__(self, render_fields: bool = False, **kwargs): + super().__init__(**kwargs) + self.filters_stream = Filters(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - filter_id = stream_slice["filter_id"] - return f"filter/{filter_id}/permission" + return f"filter/{stream_slice['filter_id']}/permission" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - filters_stream = Filters(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for filters in filters_stream.read_records(sync_mode=SyncMode.full_refresh): + for filters in read_full_refresh(self.filters_stream): yield from super().read_records(stream_slice={"filter_id": filters["id"]}, **kwargs) @@ -321,7 +286,7 @@ class Groups(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-groups/#api-rest-api-3-group-bulk-get """ - parse_response_root = "values" + extract_field = "values" primary_key = "groupId" def path(self, **kwargs) -> str: @@ -334,14 +299,16 @@ class Issues(IncrementalJiraStream): """ cursor_field = "updated" - parse_response_root = "issues" + extract_field = "issues" use_cache = True - def __init__(self, additional_fields: List[str], expand_changelog: bool = False, render_fields: bool = False, **kwargs): + def __init__(self, expand_changelog: bool = False, render_fields: bool = False, **kwargs): super().__init__(**kwargs) - self._additional_fields = additional_fields self._expand_changelog = expand_changelog self._render_fields = render_fields + self._project_ids = [] + self.issue_fields_stream = IssueFields(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + self.projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, **kwargs) -> str: return "search" @@ -352,10 +319,12 @@ def request_params( stream_slice: Mapping[str, Any], next_page_token: Optional[Mapping[str, Any]] = None, ) -> MutableMapping[str, Any]: - project_id = stream_slice["project_id"] params = super().request_params(stream_state=stream_state, stream_slice=stream_slice, next_page_token=next_page_token) - params["fields"] = stream_slice["fields"] - jql_parts = [f"project = '{project_id}'", self.jql_compare_date(stream_state)] + params["fields"] = "*all" + jql_parts = [self.jql_compare_date(stream_state)] + if self._project_ids: + project_ids = ", ".join([f"'{project_id}'" for project_id in self._project_ids]) + jql_parts.append(f"project in ({project_ids})") params["jql"] = " and ".join([p for p in jql_parts if p]) expand = [] if self._expand_changelog: @@ -366,73 +335,51 @@ def request_params( params["expand"] = ",".join(expand) return params - def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - stream_args = {"authenticator": self.authenticator, "domain": self._domain, "projects": self._projects} - field_ids_by_name = IssueFields(**stream_args).field_ids_by_name() - fields = [ - "assignee", - "attachment", - "components", - "created", - "creator", - "description", - "issuelinks", - "issuetype", - "labels", - "parent", - "priority", - "project", - "resolutiondate", - "security", - "status", - "subtasks", - "summary", - "updated", - ] - additional_field_names = ["Development", "Story Points", "Story point estimate", "Epic Link", "Sprint"] - for name in additional_field_names + self._additional_fields: - if name in field_ids_by_name: - fields.extend(field_ids_by_name[name]) - projects_stream = Projects(**stream_args) - for project in projects_stream.read_records(sync_mode=SyncMode.full_refresh): - yield from super().read_records( - stream_slice={"project_id": project["id"], "project_key": project["key"], "fields": list(set(fields))}, **kwargs - ) - - def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: - record["projectId"] = stream_slice["project_id"] - record["projectKey"] = stream_slice["project_key"] - issue_fields = record["fields"] - record["created"] = issue_fields.get("created") - record["updated"] = issue_fields.get("updated") or issue_fields.get("created") + def read_records(self, **kwargs) -> Iterable[Mapping[str, Any]]: + self._project_ids = [] + if self._projects: + self._project_ids = self.get_project_ids() + if not self._project_ids: + return + yield from super().read_records(**kwargs) + + def transform(self, record: MutableMapping[str, Any], **kwargs) -> MutableMapping[str, Any]: + record["projectId"] = record["fields"]["project"]["id"] + record["projectKey"] = record["fields"]["project"]["key"] + record["created"] = record["fields"]["created"] + record["updated"] = record["fields"]["updated"] return record + def get_project_ids(self): + return [project["id"] for project in read_full_refresh(self.projects_stream)] + class IssueComments(IncrementalJiraStream): """ https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-get """ - parse_response_root = "comments" - primary_key = "id" + extract_field = "comments" cursor_field = "updated" - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"issue/{key}/comment" - - def read_records( - self, stream_slice: Optional[Mapping[str, Any]] = None, stream_state: Mapping[str, Any] = None, **kwargs - ) -> Iterable[Mapping[str, Any]]: - issues_stream = Issues( - additional_fields=[], + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.issues_stream = Issues( authenticator=self.authenticator, domain=self._domain, projects=self._projects, start_date=self._start_date, ) - for issue in issues_stream.read_records(sync_mode=SyncMode.full_refresh, stream_state=stream_state): - yield from super().read_records(stream_slice={"key": issue["key"]}, stream_state=stream_state, **kwargs) + + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: + return f"issue/{stream_slice['key']}/comment" + + def read_records( + self, stream_slice: Optional[Mapping[str, Any]] = None, stream_state: Mapping[str, Any] = None, **kwargs + ) -> Iterable[Mapping[str, Any]]: + for issue in read_incremental(self.issues_stream, stream_state=stream_state): + stream_slice = {"key": issue["key"]} + yield from super().read_records(stream_slice=stream_slice, stream_state=stream_state, **kwargs) class IssueFields(JiraStream): @@ -447,10 +394,8 @@ def path(self, **kwargs) -> str: def field_ids_by_name(self) -> Mapping[str, List[str]]: results = {} - for f in self.read_records(sync_mode=SyncMode.full_refresh): - if f["name"] not in results: - results[f["name"]] = [] - results[f["name"]].append(f["id"]) + for f in read_full_refresh(self): + results.setdefault(f["name"], []).append(f["id"]) return results @@ -459,7 +404,11 @@ class IssueFieldConfigurations(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-field-configurations/#api-rest-api-3-fieldconfiguration-get """ - parse_response_root = "values" + extract_field = "values" + skip_http_status_codes = [ + # Only Jira administrators can access field configurations + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "fieldconfiguration" @@ -470,15 +419,24 @@ class IssueCustomFieldContexts(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-custom-field-contexts/#api-rest-api-3-field-fieldid-context-get """ - parse_response_root = "values" + extract_field = "values" + skip_http_status_codes = [ + # https://community.developer.atlassian.com/t/get-custom-field-contexts-not-found-returned/48408/2 + # /rest/api/3/field/{fieldId}/context - can return 404 if project style is not "classic" + requests.codes.NOT_FOUND, + # Only Jira administrators can access custom field contexts. + requests.codes.FORBIDDEN, + ] + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.issue_fields_stream = IssueFields(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - field_id = stream_slice["field_id"] - return f"field/{field_id}/context" + return f"field/{stream_slice['field_id']}/context" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - fields_stream = IssueFields(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for field in fields_stream.read_records(sync_mode=SyncMode.full_refresh): + for field in read_full_refresh(self.issue_fields_stream): if field.get("custom", False): yield from super().read_records(stream_slice={"field_id": field["id"]}, **kwargs) @@ -488,7 +446,7 @@ class IssueLinkTypes(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-link-types/#api-rest-api-3-issuelinktype-get """ - parse_response_root = "issueLinkTypes" + extract_field = "issueLinkTypes" def path(self, **kwargs) -> str: return "issueLinkType" @@ -500,6 +458,10 @@ class IssueNavigatorSettings(JiraStream): """ primary_key = None + skip_http_status_codes = [ + # You need Administrator permission to perform this operation. + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "settings/columns" @@ -510,7 +472,7 @@ class IssueNotificationSchemes(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-notification-schemes/#api-rest-api-3-notificationscheme-get """ - parse_response_root = "values" + extract_field = "values" def path(self, **kwargs) -> str: return "notificationscheme" @@ -521,8 +483,10 @@ class IssuePriorities(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-priorities/#api-rest-api-3-priority-get """ + extract_field = "values" + def path(self, **kwargs) -> str: - return "priority" + return "priority/search" class IssuePropertyKeys(JiraStream): @@ -530,7 +494,7 @@ class IssuePropertyKeys(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-properties/#api-rest-api-3-issue-issueidorkey-properties-get """ - parse_response_root = "key" + extract_field = "key" use_cache = True def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: @@ -549,22 +513,22 @@ class IssueProperties(StartDateJiraStream): primary_key = "key" - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - issue_key = stream_slice["issue_key"] - return f"issue/{issue_key}/properties/{key}" - - def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - issues_stream = Issues( - additional_fields=[], + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.issues_stream = Issues( authenticator=self.authenticator, domain=self._domain, projects=self._projects, start_date=self._start_date, ) - issue_property_keys_stream = IssuePropertyKeys(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for issue in issues_stream.read_records(sync_mode=SyncMode.full_refresh): - for property_key in issue_property_keys_stream.read_records(stream_slice={"key": issue["key"]}, **kwargs): + self.issue_property_keys_stream = IssuePropertyKeys(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: + return f"issue/{stream_slice['issue_key']}/properties/{stream_slice['key']}" + + def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: + for issue in read_full_refresh(self.issues_stream): + for property_key in self.issue_property_keys_stream.read_records(stream_slice={"key": issue["key"]}, **kwargs): yield from super().read_records(stream_slice={"key": property_key["key"], "issue_key": issue["key"]}, **kwargs) @@ -573,29 +537,32 @@ class IssueRemoteLinks(StartDateJiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-remote-links/#api-rest-api-3-issue-issueidorkey-remotelink-get """ - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"issue/{key}/remotelink" - - def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - issues_stream = Issues( - additional_fields=[], + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.issues_stream = Issues( authenticator=self.authenticator, domain=self._domain, projects=self._projects, start_date=self._start_date, ) - for issue in issues_stream.read_records(sync_mode=SyncMode.full_refresh): + + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: + return f"issue/{stream_slice['key']}/remotelink" + + def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: + for issue in read_full_refresh(self.issues_stream): yield from super().read_records(stream_slice={"key": issue["key"]}, **kwargs) class IssueResolutions(JiraStream): """ - https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-resolutions/#api-rest-api-3-resolution-get + https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-resolutions/#api-rest-api-3-resolution-search-get """ + extract_field = "values" + def path(self, **kwargs) -> str: - return "resolution" + return "resolution/search" class IssueSecuritySchemes(JiraStream): @@ -603,7 +570,11 @@ class IssueSecuritySchemes(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-security-schemes/#api-rest-api-3-issuesecurityschemes-get """ - parse_response_root = "issueSecuritySchemes" + extract_field = "issueSecuritySchemes" + skip_http_status_codes = [ + # You need to be a Jira administrator to perform this operation + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "issuesecurityschemes" @@ -614,7 +585,11 @@ class IssueTypeSchemes(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-type-schemes/#api-rest-api-3-issuetypescheme-get """ - parse_response_root = "values" + extract_field = "values" + skip_http_status_codes = [ + # Only Jira administrators can access issue type schemes. + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "issuetypescheme" @@ -625,7 +600,11 @@ class IssueTypeScreenSchemes(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-type-screen-schemes/#api-rest-api-3-issuetypescreenscheme-get """ - parse_response_root = "values" + extract_field = "values" + skip_http_status_codes = [ + # Only Jira administrators can access issue type screen schemes. + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "issuetypescreenscheme" @@ -635,28 +614,29 @@ class IssueVotes(StartDateJiraStream): """ https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-votes/#api-rest-api-3-issue-issueidorkey-votes-get - parse_response_root voters is commented, since it contains the + extract_field voters is commented, since it contains the objects but does not contain information about exactly votes. The original schema self, votes (number), hasVoted (bool) and list of voters. - The schema is correct but parse_response_root should not be applied. + The schema is correct but extract_field should not be applied. """ - # parse_response_root = "voters" + # extract_field = "voters" primary_key = None - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"issue/{key}/votes" - - def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - issues_stream = Issues( - additional_fields=[], + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.issues_stream = Issues( authenticator=self.authenticator, domain=self._domain, projects=self._projects, start_date=self._start_date, ) - for issue in issues_stream.read_records(sync_mode=SyncMode.full_refresh): + + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: + return f"issue/{stream_slice['key']}/votes" + + def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: + for issue in read_full_refresh(self.issues_stream): yield from super().read_records(stream_slice={"key": issue["key"]}, **kwargs) @@ -664,25 +644,26 @@ class IssueWatchers(StartDateJiraStream): """ https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-watchers/#api-rest-api-3-issue-issueidorkey-watchers-get - parse_response_root is commented for the same reason as issue_voters. + extract_field is commented for the same reason as issue_voters. """ - # parse_response_root = "watchers" + # extract_field = "watchers" primary_key = None - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"issue/{key}/watchers" - - def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - issues_stream = Issues( - additional_fields=[], + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.issues_stream = Issues( authenticator=self.authenticator, domain=self._domain, projects=self._projects, start_date=self._start_date, ) - for issue in issues_stream.read_records(sync_mode=SyncMode.full_refresh): + + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: + return f"issue/{stream_slice['key']}/watchers" + + def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: + for issue in read_full_refresh(self.issues_stream): yield from super().read_records(stream_slice={"key": issue["key"]}, **kwargs) @@ -691,26 +672,27 @@ class IssueWorklogs(IncrementalJiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-worklogs/#api-rest-api-3-issue-issueidorkey-worklog-get """ - parse_response_root = "worklogs" - primary_key = "id" + extract_field = "worklogs" cursor_field = "updated" - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"issue/{key}/worklog" - - def read_records( - self, stream_slice: Optional[Mapping[str, Any]] = None, stream_state: Mapping[str, Any] = None, **kwargs - ) -> Iterable[Mapping[str, Any]]: - issues_stream = Issues( - additional_fields=[], + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.issues_stream = Issues( authenticator=self.authenticator, domain=self._domain, projects=self._projects, start_date=self._start_date, ) - for issue in issues_stream.read_records(sync_mode=SyncMode.full_refresh, stream_state=stream_state): - yield from super().read_records(stream_slice={"key": issue["key"]}, stream_state=stream_state, **kwargs) + + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: + return f"issue/{stream_slice['key']}/worklog" + + def read_records( + self, stream_slice: Optional[Mapping[str, Any]] = None, stream_state: Mapping[str, Any] = None, **kwargs + ) -> Iterable[Mapping[str, Any]]: + for issue in read_incremental(self.issues_stream, stream_state=stream_state): + stream_slice = {"key": issue["key"]} + yield from super().read_records(stream_slice=stream_slice, stream_state=stream_state, **kwargs) class JiraSettings(JiraStream): @@ -718,6 +700,11 @@ class JiraSettings(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jira-settings/#api-rest-api-3-application-properties-get """ + skip_http_status_codes = [ + # No permission + requests.codes.FORBIDDEN + ] + def path(self, **kwargs) -> str: return "application-properties" @@ -727,8 +714,14 @@ class Labels(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-labels/#api-rest-api-3-label-get """ + extract_field = "values" + primary_key = "label" + def path(self, **kwargs) -> str: - return "application-properties" + return "label" + + def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: + return {"label": record} class Permissions(JiraStream): @@ -736,15 +729,19 @@ class Permissions(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-permissions/#api-rest-api-3-permissions-get """ - parse_response_root = "permissions" - primary_key = None + extract_field = "permissions" + primary_key = "key" + skip_http_status_codes = [ + # You need to have Administer permissions to view this resource + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "permissions" def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: response_json = response.json() - records = response_json.get(self.parse_response_root, {}).values() + records = response_json.get(self.extract_field, {}).values() yield from records @@ -753,7 +750,7 @@ class PermissionSchemes(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-permission-schemes/#api-rest-api-3-permissionscheme-get """ - parse_response_root = "permissionSchemes" + extract_field = "permissionSchemes" def path(self, **kwargs) -> str: return "permissionscheme" @@ -764,7 +761,7 @@ class Projects(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-projects/#api-rest-api-3-project-search-get """ - parse_response_root = "values" + extract_field = "values" use_cache = True def path(self, **kwargs) -> str: @@ -779,7 +776,6 @@ def read_records(self, **kwargs) -> Iterable[Mapping[str, Any]]: for project in super().read_records(**kwargs): if not self._projects or project["key"] in self._projects: yield project - yield from [] class ProjectAvatars(JiraStream): @@ -787,18 +783,20 @@ class ProjectAvatars(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-avatars/#api-rest-api-3-project-projectidorkey-avatars-get """ + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"project/{key}/avatars" + return f"project/{stream_slice['key']}/avatars" def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: response_json = response.json() - for type_key, records in response_json.items(): + for records in response_json.values(): yield from records def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for project in projects_stream.read_records(sync_mode=SyncMode.full_refresh): + for project in read_full_refresh(self.projects_stream): yield from super().read_records(stream_slice={"key": project["key"]}, **kwargs) @@ -816,15 +814,17 @@ class ProjectComponents(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-components/#api-rest-api-3-project-projectidorkey-component-get """ - parse_response_root = "values" + extract_field = "values" + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"project/{key}/component" + return f"project/{stream_slice['key']}/component" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for project in projects_stream.read_records(sync_mode=SyncMode.full_refresh): + for project in read_full_refresh(self.projects_stream): yield from super().read_records(stream_slice={"key": project["key"]}, **kwargs) @@ -833,32 +833,44 @@ class ProjectEmail(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-email/#api-rest-api-3-project-projectid-email-get """ - primary_key = None + primary_key = "projectId" + skip_http_status_codes = [ + # You cannot edit the configuration of this project. + requests.codes.FORBIDDEN + ] + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - project_id = stream_slice["project_id"] - return f"project/{project_id}/email" + return f"project/{stream_slice['project_id']}/email" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for project in projects_stream.read_records(sync_mode=SyncMode.full_refresh): + for project in read_full_refresh(self.projects_stream): yield from super().read_records(stream_slice={"project_id": project["id"]}, **kwargs) + def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: + record["projectId"] = stream_slice["project_id"] + return record + class ProjectPermissionSchemes(JiraStream): """ https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-permission-schemes/#api-rest-api-3-project-projectkeyorid-securitylevel-get """ - parse_response_root = "levels" + extract_field = "levels" + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"project/{key}/securitylevel" + return f"project/{stream_slice['key']}/securitylevel" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for project in projects_stream.read_records(sync_mode=SyncMode.full_refresh): + for project in read_full_refresh(self.projects_stream): yield from super().read_records(stream_slice={"key": project["key"]}, **kwargs) @@ -878,15 +890,17 @@ class ProjectVersions(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-versions/#api-rest-api-3-project-projectidorkey-version-get """ - parse_response_root = "values" + extract_field = "values" + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["key"] - return f"project/{key}/version" + return f"project/{stream_slice['key']}/version" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - projects_stream = Projects(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for project in projects_stream.read_records(sync_mode=SyncMode.full_refresh): + for project in read_full_refresh(self.projects_stream): yield from super().read_records(stream_slice={"key": project["key"]}, **kwargs) @@ -900,7 +914,7 @@ class PullRequests(IncrementalJiraStream): """ cursor_field = "updated" - parse_response_root = "detail" + extract_field = "detail" raise_on_http_errors = False pr_regex = r"(?PPullRequestOverallDetails{openCount=(?P[0-9]+), mergedCount=(?P[0-9]+), declinedCount=(?P[0-9]+)})|(?Ppullrequest={dataType=pullrequest, state=(?P[a-zA-Z]+), stateCount=(?P[0-9]+)})" @@ -942,9 +956,9 @@ def read_records( ) -> Iterable[Mapping[str, Any]]: field_ids_by_name = self.issue_fields_stream.field_ids_by_name() dev_field_ids = field_ids_by_name.get("Development", []) - for issue in self.issues_stream.read_records(sync_mode=SyncMode.full_refresh, stream_state=stream_state): + for issue in read_incremental(self.issues_stream, stream_state=stream_state): for dev_field_id in dev_field_ids: - if self.has_pull_requests(issue["fields"][dev_field_id]): + if self.has_pull_requests(issue["fields"].get(dev_field_id)): yield from super().read_records( stream_slice={"id": issue["id"], self.cursor_field: issue["fields"][self.cursor_field]}, **kwargs ) @@ -961,8 +975,12 @@ class Screens(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screens/#api-rest-api-3-screens-get """ - parse_response_root = "values" + extract_field = "values" use_cache = True + skip_http_status_codes = [ + # Only Jira administrators can manage screens. + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "screens" @@ -976,13 +994,15 @@ class ScreenTabs(JiraStream): raise_on_http_errors = False use_cache = True + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.screens_stream = Screens(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - screen_id = stream_slice["screen_id"] - return f"screens/{screen_id}/tabs" + return f"screens/{stream_slice['screen_id']}/tabs" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - screens_stream = Screens(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for screen in screens_stream.read_records(sync_mode=SyncMode.full_refresh): + for screen in read_full_refresh(self.screens_stream): yield from self.read_tab_records(stream_slice={"screen_id": screen["id"]}, **kwargs) def read_tab_records(self, stream_slice: Mapping[str, Any], **kwargs) -> Iterable[Mapping[str, Any]]: @@ -995,16 +1015,17 @@ class ScreenTabFields(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screen-tab-fields/#api-rest-api-3-screens-screenid-tabs-tabid-fields-get """ + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.screens_stream = Screens(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + self.screen_tabs_stream = ScreenTabs(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - screen_id = stream_slice["screen_id"] - tab_id = stream_slice["tab_id"] - return f"screens/{screen_id}/tabs/{tab_id}/fields" + return f"screens/{stream_slice['screen_id']}/tabs/{stream_slice['tab_id']}/fields" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - screens_stream = Screens(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - screen_tabs_stream = ScreenTabs(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for screen in screens_stream.read_records(sync_mode=SyncMode.full_refresh): - for tab in screen_tabs_stream.read_tab_records(stream_slice={"screen_id": screen["id"]}, **kwargs): + for screen in read_full_refresh(self.screens_stream): + for tab in self.screen_tabs_stream.read_tab_records(stream_slice={"screen_id": screen["id"]}, **kwargs): if id in tab: # Check for proper tab record since the ScreenTabs stream doesn't throw http errors yield from super().read_records(stream_slice={"screen_id": screen["id"], "tab_id": tab["id"]}, **kwargs) @@ -1014,43 +1035,54 @@ class ScreenSchemes(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screen-schemes/#api-rest-api-3-screenscheme-get """ - parse_response_root = "values" + extract_field = "values" + skip_http_status_codes = [ + # Only Jira administrators can access screen schemes. + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "screenscheme" -class Sprints(V1ApiJiraStream): +class Sprints(JiraStream): """ - https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#api-agile-1-0-board-boardid-sprint-get + https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#api-rest-agile-1-0-board-boardid-sprint-get """ - parse_response_root = "values" + extract_field = "values" use_cache = True + api_v1 = True + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.boards_stream = Boards(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - board_id = stream_slice["board_id"] - return f"board/{board_id}/sprint" + return f"board/{stream_slice['board_id']}/sprint" def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - boards_stream = Boards(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for board in boards_stream.read_records(sync_mode=SyncMode.full_refresh): + for board in read_full_refresh(self.boards_stream): if board["type"] == "scrum": yield from super().read_records(stream_slice={"board_id": board["id"]}, **kwargs) - yield from [] -class SprintIssues(V1ApiJiraStream, IncrementalJiraStream): +class SprintIssues(IncrementalJiraStream): """ - https://developer.atlassian.com/cloud/jira/software/rest/api-group-sprint/#api-agile-1-0-sprint-sprintid-issue-get + https://developer.atlassian.com/cloud/jira/software/rest/api-group-sprint/#api-rest-agile-1-0-sprint-sprintid-issue-get """ cursor_field = "updated" - parse_response_root = "issues" + extract_field = "issues" + api_v1 = True + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.sprints_stream = Sprints(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + self.issue_fields_stream = IssueFields(authenticator=self.authenticator, domain=self._domain, projects=self._projects) def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - sprint_id = stream_slice["sprint_id"] - return f"sprint/{sprint_id}/issue" + return f"sprint/{stream_slice['sprint_id']}/issue" def request_params( self, @@ -1066,32 +1098,38 @@ def request_params( return params def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - stream_args = {"authenticator": self.authenticator, "domain": self._domain, "projects": self._projects} - field_ids_by_name = IssueFields(**stream_args).field_ids_by_name() - fields = ["key", "status", "updated"] - for name in ["Story Points", "Story point estimate"]: - if name in field_ids_by_name: - fields.extend(field_ids_by_name[name]) - sprints_stream = Sprints(**stream_args) - for sprints in sprints_stream.read_records(sync_mode=SyncMode.full_refresh): - yield from super().read_records(stream_slice={"sprint_id": sprints["id"], "fields": fields}, **kwargs) + fields = self.get_fields() + for sprint in read_full_refresh(self.sprints_stream): + stream_slice = {"sprint_id": sprint["id"], "fields": fields} + yield from super().read_records(stream_slice=stream_slice, **kwargs) def transform(self, record: MutableMapping[str, Any], stream_slice: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: record["issueId"] = record["id"] record["id"] = "-".join([str(stream_slice["sprint_id"]), record["id"]]) record["sprintId"] = stream_slice["sprint_id"] - issue_fields = record["fields"] - record["created"] = issue_fields.get("created") - record["updated"] = issue_fields.get("updated") or issue_fields.get("created") + record["created"] = record["fields"]["created"] + record["updated"] = record["fields"]["updated"] return record + def get_fields(self): + fields = ["key", "status", "created", "updated"] + field_ids_by_name = self.issue_fields_stream.field_ids_by_name() + for name in ["Story Points", "Story point estimate"]: + if name in field_ids_by_name: + fields.extend(field_ids_by_name[name]) + return fields + class TimeTracking(JiraStream): """ https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-time-tracking/#api-rest-api-3-configuration-timetracking-list-get """ - primary_key = None + primary_key = "key" + skip_http_status_codes = [ + # This resource is only available to administrators + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "configuration/timetracking/list" @@ -1105,44 +1143,37 @@ class Users(JiraStream): primary_key = "accountId" use_cache = True - def __init__(self, domain: str, projects: List[str], **kwargs): - super(JiraStream, self).__init__(**kwargs) - self._domain = domain - self._projects = projects - self._max_results = 100 - self._total = self._max_results - self._startAt = 0 - - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - params = {} - response_data = response.json() - - if users_returned := len(response_data): - self._total = self._total + users_returned - self._startAt = self._startAt + users_returned - params["startAt"] = self._startAt - params["maxResults"] = self._max_results - - return params - def path(self, **kwargs) -> str: return "users/search" class UsersGroupsDetailed(JiraStream): """ - https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-get + https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-users/#api-rest-api-3-user-get """ primary_key = "accountId" + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.users_stream = Users(authenticator=self.authenticator, domain=self._domain, projects=self._projects) + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: - key = stream_slice["accountId"] - return f"user?accountId={key}&expand=groups,applicationRoles" + return "user" + + def request_params( + self, + stream_state: Mapping[str, Any], + stream_slice: Mapping[str, Any], + next_page_token: Optional[Mapping[str, Any]] = None, + ) -> MutableMapping[str, Any]: + params = super().request_params(stream_state=stream_state, stream_slice=stream_slice, next_page_token=next_page_token) + params["accountId"] = stream_slice["accountId"] + params["expand"] = "groups,applicationRoles" + return params def read_records(self, stream_slice: Optional[Mapping[str, Any]] = None, **kwargs) -> Iterable[Mapping[str, Any]]: - users_stream = Users(authenticator=self.authenticator, domain=self._domain, projects=self._projects) - for user in users_stream.read_records(sync_mode=SyncMode.full_refresh): + for user in read_full_refresh(self.users_stream): yield from super().read_records(stream_slice={"accountId": user["accountId"]}, **kwargs) @@ -1151,7 +1182,11 @@ class Workflows(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflows/#api-rest-api-3-workflow-search-get """ - parse_response_root = "values" + extract_field = "values" + skip_http_status_codes = [ + # Only Jira administrators can access workflows. + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "workflow/search" @@ -1162,7 +1197,11 @@ class WorkflowSchemes(JiraStream): https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflow-schemes/#api-rest-api-3-workflowscheme-get """ - parse_response_root = "values" + extract_field = "values" + skip_http_status_codes = [ + # Only Jira administrators can access workflow scheme associations. + requests.codes.FORBIDDEN + ] def path(self, **kwargs) -> str: return "workflowscheme" diff --git a/airbyte-integrations/connectors/source-jira/source_jira/utils.py b/airbyte-integrations/connectors/source-jira/source_jira/utils.py new file mode 100644 index 000000000000..c6a3e4551704 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/source_jira/utils.py @@ -0,0 +1,32 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from typing import Any, MutableMapping + +from airbyte_cdk.models import SyncMode +from airbyte_cdk.sources.streams import Stream + + +def safe_max(arg1, arg2): + if arg1 is None: + return arg2 + if arg2 is None: + return arg1 + return max(arg1, arg2) + + +def read_full_refresh(stream_instance: Stream): + slices = stream_instance.stream_slices(sync_mode=SyncMode.full_refresh) + for _slice in slices: + records = stream_instance.read_records(stream_slice=_slice, sync_mode=SyncMode.full_refresh) + for record in records: + yield record + + +def read_incremental(stream_instance: Stream, stream_state: MutableMapping[str, Any]): + slices = stream_instance.stream_slices(sync_mode=SyncMode.incremental, stream_state=stream_state) + for _slice in slices: + records = stream_instance.read_records(sync_mode=SyncMode.incremental, stream_slice=_slice, stream_state=stream_state) + for record in records: + yield record diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/__init__.py b/airbyte-integrations/connectors/source-jira/unit_tests/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/conftest.py b/airbyte-integrations/connectors/source-jira/unit_tests/conftest.py new file mode 100644 index 000000000000..208168964cd2 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/conftest.py @@ -0,0 +1,259 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import json +import os + +import pytest +from pytest import fixture + + +@pytest.fixture +def config(): + return { + "api_token": "token", + "domain": "domain", + "email": "email@email.com", + "start_date": "2021-01-01T00:00:00Z", + "projects": ["Project1"] + } + + +def load_file(fn): + return open(os.path.join("unit_tests", "responses", fn)).read() + + +@fixture +def application_roles_response(): + return json.loads(load_file("application_role.json")) + + +@fixture +def boards_response(): + return json.loads(load_file("board.json")) + + +@fixture +def dashboards_response(): + return json.loads(load_file("dashboard.json")) + + +@fixture +def filters_response(): + return json.loads(load_file("filter.json")) + + +@fixture +def groups_response(): + return json.loads(load_file("groups.json")) + + +@fixture +def issue_fields_response(): + return json.loads(load_file("issue_fields.json")) + + +@fixture +def issues_field_configurations_response(): + return json.loads(load_file("issues_field_configurations.json")) + + +@fixture +def issues_link_types_response(): + return json.loads(load_file("issues_link_types.json")) + + +@fixture +def issues_navigator_settings_response(): + return json.loads(load_file("issues_navigator_settings.json")) + + +@fixture +def issue_notification_schemas_response(): + return json.loads(load_file("issue_notification_schemas.json")) + + +@fixture +def issue_properties_response(): + return json.loads(load_file("issue_properties.json")) + + +@fixture +def issue_resolutions_response(): + return json.loads(load_file("issue_resolutions.json")) + + +@fixture +def issue_security_schemes_response(): + return json.loads(load_file("issue_security_schemes.json")) + + +@fixture +def issue_type_schemes_response(): + return json.loads(load_file("issue_type.json")) + + +@fixture +def jira_settings_response(): + return json.loads(load_file("jira_settings.json")) + + +@fixture +def board_issues_response(): + return json.loads(load_file("board_issues.json")) + + +@fixture +def filter_sharing_response(): + return json.loads(load_file("filter_sharing.json")) + + +@fixture +def projects_response(): + return json.loads(load_file("projects.json")) + + +@fixture +def projects_avatars_response(): + return json.loads(load_file("projects_avatars.json")) + + +@fixture +def projects_categories_response(): + return json.loads(load_file("projects_categories.json")) + + +@fixture +def screens_response(): + return json.loads(load_file("screens.json")) + + +@fixture +def screen_tabs_response(): + return json.loads(load_file("screen_tabs.json")) + + +@fixture +def screen_tab_fields_response(): + return json.loads(load_file("screen_tab_fields.json")) + + +@fixture +def sprints_response(): + return json.loads(load_file("sprints.json")) + + +@fixture +def sprints_issues_response(): + return json.loads(load_file("sprint_issues.json")) + + +@fixture +def time_tracking_response(): + return json.loads(load_file("time_tracking.json")) + + +@fixture +def users_response(): + return json.loads(load_file("users.json")) + + +@fixture +def users_groups_detailed_response(): + return json.loads(load_file("users_groups_detailed.json")) + + +@fixture +def workflows_response(): + return json.loads(load_file("workflows.json")) + + +@fixture +def workflow_schemas_response(): + return json.loads(load_file("workflow_schemas.json")) + + +@fixture +def workflow_statuses_response(): + return json.loads(load_file("workflow_statuses.json")) + + +@fixture +def workflow_status_categories_response(): + return json.loads(load_file("workflow_status_categories.json")) + + +@fixture +def avatars_response(): + return json.loads(load_file("avatars.json")) + + +@fixture +def issues_response(): + return json.loads(load_file("issues.json")) + + +@fixture +def issue_comments_response(): + return json.loads(load_file("issue_comments.json")) + + +@fixture +def issue_custom_field_contexts_response(): + return json.loads(load_file("issue_custom_field_contexts.json")) + + +@fixture +def issue_property_keys_response(): + return json.loads(load_file("issue_property_keys.json")) + + +@fixture +def project_permissions_response(): + return json.loads(load_file("project_permissions.json")) + + +@fixture +def project_email_response(): + return json.loads(load_file("project_email.json")) + + +@fixture +def project_components_response(): + return json.loads(load_file("project_components.json")) + + +@fixture +def permissions_response(): + return json.loads(load_file("permissions.json")) + + +@fixture +def labels_response(): + return json.loads(load_file("labels.json")) + + +@fixture +def issue_worklogs_response(): + return json.loads(load_file("issue_worklogs.json")) + + +@fixture +def issue_watchers_response(): + return json.loads(load_file("issue_watchers.json")) + + +@fixture +def issue_votes_response(): + return json.loads(load_file("issue_votes.json")) + + +@fixture +def issue_remote_links_response(): + return json.loads(load_file("issue_remote_links.json")) + + +@fixture +def projects_versions_response(): + return json.loads(load_file("projects_versions.json")) diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/application_role.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/application_role.json new file mode 100644 index 000000000000..59278724ab6a --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/application_role.json @@ -0,0 +1,58 @@ +[ + { + "key": "jira-software", + "groups": [ + "jira-software-users", + "atlassian-addons-admin", + "system-administrators", + "site-admins", + "administrators" + ], + "groupDetails": [ + { + "name": "test", + "groupId": "test", + "self": "test" + }, + { + "name": "administrators", + "groupId": "test", + "self": "test" + }, + { + "name": "atlassian-addons-admin", + "groupId": "test", + "self": "test" + }, + { + "name": "system-administrators", + "groupId": "test", + "self": "test" + }, + { + "name": "site-admins", + "groupId": "test", + "self": "test" + } + ], + "name": "Jira Software", + "defaultGroups": [ + "jira-software-users" + ], + "defaultGroupsDetails": [ + { + "name": "jira-software-users", + "groupId": "test", + "self": "test" + } + ], + "selectedByDefault": false, + "defined": true, + "numberOfSeats": 100, + "remainingSeats": 61, + "userCount": 14, + "userCountDescription": "users", + "hasUnlimitedSeats": false, + "platform": false + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/avatars.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/avatars.json new file mode 100644 index 000000000000..d2bcac330da4 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/avatars.json @@ -0,0 +1,28 @@ +{ + "system": [ + { + "id": "10300", + "isSystemAvatar": true, + "isSelected": false, + "isDeletable": false, + "urls": { + "16x16": "/secure/useravatar?size=xsmall&avatarId=10300", + "24x24": "/secure/useravatar?size=small&avatarId=10300", + "32x32": "/secure/useravatar?size=medium&avatarId=10300", + "48x48": "/secure/useravatar?avatarId=10300" + } + }, + { + "id": "10303", + "isSystemAvatar": true, + "isSelected": false, + "isDeletable": false, + "urls": { + "16x16": "/secure/useravatar?size=xsmall&avatarId=10303", + "24x24": "/secure/useravatar?size=small&avatarId=10303", + "32x32": "/secure/useravatar?size=medium&avatarId=10303", + "48x48": "/secure/useravatar?avatarId=10303" + } + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/board.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/board.json new file mode 100644 index 000000000000..ebe2fdd85ed1 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/board.json @@ -0,0 +1,55 @@ +{ + "values": [ + { + "id": 1, + "self": "https://test/rest/agile/1.0/board/1", + "name": "IT board", + "type": "scrum", + "location": { + "projectId": 10000, + "displayName": "integration-tests (IT)", + "projectName": "integration-tests", + "projectKey": "Project1", + "projectTypeKey": "software", + "avatarURI": "test avatar", + "name": "integration-tests (IT)" + }, + "projectId": "10000", + "projectKey": "Project1" + }, + { + "id": 2, + "self": "https://test/rest/agile/1.0/board/17", + "name": "Project1 board", + "type": "scrum", + "location": { + "projectId": 10016, + "displayName": "Project1(Project1)", + "projectName": "Test project 13", + "projectKey": "Project1", + "projectTypeKey": "software", + "avatarURI": "test avatar", + "name": "Project1(Project1)" + }, + "projectId": "10016", + "projectKey": "Project1" + }, + { + "id": 3, + "self": "https://test/rest/agile/1.0/board/17", + "name": "Project1 board", + "type": "scrum", + "location": { + "projectId": 10016, + "displayName": "Project1(Project1)", + "projectName": "Test project 13", + "projectKey": "Project1", + "projectTypeKey": "software", + "avatarURI": "test avatar", + "name": "Project1(Project1)" + }, + "projectId": "10016", + "projectKey": "Project1" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/board_issues.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/board_issues.json new file mode 100644 index 000000000000..c01a2410d8b4 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/board_issues.json @@ -0,0 +1,17 @@ +{ + "issues": [ + { + "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", + "id": "10012", + "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10012", + "key": "IT-6", + "fields": { + "updated": "2022-05-17T04:26:21.613-0700", + "created": "2021-03-11T06:14:18.085-0800" + }, + "boardId": 1, + "created": "2021-03-11T06:14:18.085-0800", + "updated": "2022-05-17T04:26:21.613-0700" + } + ] +} diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/dashboard.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/dashboard.json new file mode 100644 index 000000000000..d1772124ec94 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/dashboard.json @@ -0,0 +1,36 @@ +{ + "dashboards": [ + { + "id": "1", + "isFavourite": false, + "name": "test dashboard", + "popularity": 0, + "self": "test", + "sharePermissions": [ + { + "id": 1, + "type": "global" + } + ], + "editPermissions": [], + "view": "/jira/dashboards/1", + "systemDashboard": true + }, + { + "id": "2", + "isFavourite": false, + "name": "test dashboard", + "popularity": 0, + "self": "test", + "sharePermissions": [ + { + "id": 2, + "type": "global" + } + ], + "editPermissions": [], + "view": "/jira/dashboards/2", + "systemDashboard": true + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/filter.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/filter.json new file mode 100644 index 000000000000..6a1267d7c3ab --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/filter.json @@ -0,0 +1,53 @@ +{ + "values": [ + { + "expand": "description,owner,jql,viewUrl,searchUrl,favourite,favouritedCount,sharePermissions,editPermissions,isWritable,subscriptions", + "self": "test", + "id": "1", + "name": "Filter for EX board", + "owner": { + "self": "test", + "accountId": "test", + "avatarUrls": { + "48x48": "test", + "24x24": "test", + "16x16": "test", + "32x32": "test" + }, + "displayName": "integration test", + "active": true + }, + "jql": "project = EX ORDER BY Rank ASC", + "viewUrl": "test", + "searchUrl": "test", + "favourite": false, + "favouritedCount": 0, + "sharePermissions": [ + { + "id": 2, + "type": "project", + "project": { + "self": "test", + "id": "10003", + "key": "EX", + "assigneeType": "PROJECT_LEAD", + "name": "Example", + "roles": {}, + "avatarUrls": { + "48x48": "test", + "24x24": "test", + "16x16": "test", + "32x32": "test" + }, + "projectTypeKey": "software", + "simplified": false, + "style": "classic", + "properties": {} + } + } + ], + "isWritable": true, + "subscriptions": [] + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/filter_sharing.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/filter_sharing.json new file mode 100644 index 000000000000..9b52e1686979 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/filter_sharing.json @@ -0,0 +1,24 @@ +[ + { + "id": 10004, + "type": "project", + "project": { + "self": "https://airbyteio.atlassian.net/rest/api/3/project/10003", + "id": "1", + "key": "EX", + "assigneeType": "PROJECT_LEAD", + "name": "Example", + "roles": {}, + "avatarUrls": { + "48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406", + "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=small", + "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=xsmall", + "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10406?size=medium" + }, + "projectTypeKey": "software", + "simplified": false, + "style": "classic", + "properties": {} + } + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/groups.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/groups.json new file mode 100644 index 000000000000..f9bfc52ecc5e --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/groups.json @@ -0,0 +1,20 @@ +{ + "values": [ + { + "name": "Test group 17", + "groupId": "test1" + }, + { + "name": "Test group 17", + "groupId": "test2" + }, + { + "name": "Test group 17", + "groupId": "test3" + }, + { + "name": "Test group 17", + "groupId": "test4" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_comments.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_comments.json new file mode 100644 index 000000000000..469f09add69c --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_comments.json @@ -0,0 +1,108 @@ +{ + "comments": [ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10625/comment/10755", + "id": "10755", + "author": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "accountType": "atlassian" + }, + "body": { + "version": 1, + "type": "doc", + "content": [ + { + "type": "paragraph", + "content": [ + { + "type": "text", + "text": "Closed" + } + ] + } + ] + }, + "updateAuthor": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "accountType": "atlassian" + }, + "created": "2022-05-17T04:06:55.076-0700", + "updated": "2022-05-17T04:06:55.076-0700", + "jsdPublic": true + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10075/comment/10521", + "id": "10521", + "author": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "accountType": "atlassian" + }, + "body": { + "type": "doc", + "version": 1, + "content": [ + { + "type": "paragraph", + "content": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eget venenatis elit. Duis eu justo eget augue iaculis fermentum. Sed semper quam laoreet nisi egestas at posuere augue semper.", + "type": "text" + } + ] + } + ] + }, + "updateAuthor": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "accountType": "atlassian" + }, + "created": "2021-04-14T14:32:43.099-0700", + "updated": "2021-04-14T14:32:43.099-0700", + "jsdPublic": true + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_custom_field_contexts.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_custom_field_contexts.json new file mode 100644 index 000000000000..26379e87c7cf --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_custom_field_contexts.json @@ -0,0 +1,18 @@ +{ + "values": [ + { + "id": "10130", + "name": "Default Configuration Scheme for Account", + "description": "Default configuration scheme generated by Jira", + "isGlobalContext": true, + "isAnyIssueType": true + }, + { + "id": "10129", + "name": "Default Configuration Scheme for Team", + "description": "Default configuration scheme generated by Jira", + "isGlobalContext": true, + "isAnyIssueType": true + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_fields.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_fields.json new file mode 100644 index 000000000000..610e30b832c7 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_fields.json @@ -0,0 +1,47 @@ +[ + { + "id": "statuscategorychangedate", + "key": "statuscategorychangedate", + "name": "Status Category Changed", + "custom": false, + "orderable": false, + "navigable": true, + "searchable": true, + "clauseNames": [ + "statusCategoryChangedDate" + ], + "schema": { + "type": "datetime", + "system": "statuscategorychangedate" + } + }, + { + "id": "issuetype", + "key": "issuetype", + "name": "Issue Type", + "custom": true, + "orderable": true, + "navigable": true, + "searchable": true, + "clauseNames": [ + "issuetype", + "type" + ], + "schema": { + "type": "issuetype", + "system": "issuetype" + } + }, + { + "id": "parent", + "key": "parent", + "name": "Parent", + "custom": false, + "orderable": false, + "navigable": true, + "searchable": false, + "clauseNames": [ + "parent" + ] + } +] diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_notification_schemas.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_notification_schemas.json new file mode 100644 index 000000000000..83ae82f4e70a --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_notification_schemas.json @@ -0,0 +1,19 @@ +{ + "values": [ + { + "expand": "notificationSchemeEvents,user,group,projectRole,field,all", + "id": 10000, + "self": "https://airbyteio.atlassian.net/rest/api/3/notificationscheme/10000", + "name": "Default Notification Scheme" + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/priority/1", + "statusColor": "#d04437", + "description": "This problem will block progress.", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/highest.svg", + "name": "Highest", + "id": "1", + "isDefault": false + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_properties.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_properties.json new file mode 100644 index 000000000000..35bdfe3294fa --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_properties.json @@ -0,0 +1,31 @@ +{ + "values": [ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/priority/1", + "statusColor": "#d04437", + "description": "This problem will block progress.", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/highest.svg", + "name": "Highest", + "id": "1", + "isDefault": false + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/priority/2", + "statusColor": "#f15C75", + "description": "Serious problem that could block progress.", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/high.svg", + "name": "High", + "id": "2", + "isDefault": false + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/priority/3", + "statusColor": "#f79232", + "description": "Has the potential to affect progress.", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/medium.svg", + "name": "Medium", + "id": "3", + "isDefault": false + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_property_keys.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_property_keys.json new file mode 100644 index 000000000000..f7e5cc4076b5 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_property_keys.json @@ -0,0 +1,24 @@ +{ + "key": [ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/priority/1", + "statusColor": "#d04437", + "description": "This problem will block progress.", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/highest.svg", + "name": "Highest", + "id": "1", + "isDefault": false, + "key": "TESTKEY13-1" + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/priority/2", + "statusColor": "#f15C75", + "description": "Serious problem that could block progress.", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/high.svg", + "name": "High", + "id": "2", + "isDefault": false, + "key": "TESTKEY13-1" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_remote_links.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_remote_links.json new file mode 100644 index 000000000000..6dbf2bc1576d --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_remote_links.json @@ -0,0 +1,56 @@ +[ + { + "id": 10000, + "self": "https://your-domain.atlassian.net/rest/api/issue/MKY-1/remotelink/10000", + "globalId": "system=http://www.mycompany.com/support&id=1", + "application": { + "type": "com.acme.tracker", + "name": "My Acme Tracker" + }, + "relationship": "causes", + "object": { + "url": "http://www.mycompany.com/support?id=1", + "title": "TSTSUP-111", + "summary": "Customer support issue", + "icon": { + "url16x16": "http://www.mycompany.com/support/ticket.png", + "title": "Support Ticket" + }, + "status": { + "resolved": true, + "icon": { + "url16x16": "http://www.mycompany.com/support/resolved.png", + "title": "Case Closed", + "link": "http://www.mycompany.com/support?id=1&details=closed" + } + } + } + }, + { + "id": 10001, + "self": "https://your-domain.atlassian.net/rest/api/issue/MKY-1/remotelink/10001", + "globalId": "system=http://www.anothercompany.com/tester&id=1234", + "application": { + "type": "com.acme.tester", + "name": "My Acme Tester" + }, + "relationship": "is tested by", + "object": { + "url": "http://www.anothercompany.com/tester/testcase/1234", + "title": "Test Case #1234", + "summary": "Test that the submit button saves the item", + "icon": { + "url16x16": "http://www.anothercompany.com/tester/images/testcase.gif", + "title": "Test Case" + }, + "status": { + "resolved": false, + "icon": { + "url16x16": "http://www.anothercompany.com/tester/images/person/mia.gif", + "title": "Tested by Mia Krystof", + "link": "http://www.anothercompany.com/tester/person?accountId=5b10a2844c20165700ede21g" + } + } + } + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_resolutions.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_resolutions.json new file mode 100644 index 000000000000..05d099d0a5c4 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_resolutions.json @@ -0,0 +1,25 @@ +{ + "values": [ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/resolution/10000", + "id": "10000", + "description": "Work has been completed on this issue.", + "name": "Done", + "isDefault": false + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/resolution/10001", + "id": "10001", + "description": "This issue won't be actioned.", + "name": "Won't Do", + "isDefault": false + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/resolution/10002", + "id": "10002", + "description": "The problem is a duplicate of an existing issue.", + "name": "Duplicate", + "isDefault": false + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_security_schemes.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_security_schemes.json new file mode 100644 index 000000000000..2fff5eb10a66 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_security_schemes.json @@ -0,0 +1,17 @@ +{ + "issueSecuritySchemes": [ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/issuesecurityschemes/10001", + "id": 10001, + "name": "Security scheme 2", + "description": "Security scheme 2" + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/issuesecurityschemes/10000", + "id": 10000, + "name": "Security scheme 1", + "description": "Security scheme 1", + "defaultSecurityLevelId": 10002 + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_type.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_type.json new file mode 100644 index 000000000000..fe00415a627b --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_type.json @@ -0,0 +1,20 @@ +{ + "values": [ + { + "id": "10000", + "name": "Default Issue Type Scheme", + "description": "Default issue type scheme is the list of global issue types. All newly created issue types will automatically be added to this scheme.", + "isDefault": true + }, + { + "id": "10126", + "name": "IT: Scrum Issue Type Scheme", + "defaultIssueTypeId": "10001" + }, + { + "id": "10128", + "name": "P2: Scrum Issue Type Scheme", + "defaultIssueTypeId": "10001" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_votes.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_votes.json new file mode 100644 index 000000000000..f9e403dfd42b --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_votes.json @@ -0,0 +1,22 @@ +{ + "self": "https://your-domain.atlassian.net/rest/api/issue/MKY-1/votes", + "votes": 24, + "hasVoted": true, + "voters": [ + { + "self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g", + "key": "", + "accountId": "5b10a2844c20165700ede21g", + "accountType": "atlassian", + "name": "", + "avatarUrls": { + "48x48": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=48&s=48", + "24x24": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=24&s=24", + "16x16": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=16&s=16", + "32x32": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=32&s=32" + }, + "displayName": "Mia Krystof", + "active": false + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_watchers.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_watchers.json new file mode 100644 index 000000000000..831072d27fec --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_watchers.json @@ -0,0 +1,13 @@ +{ + "self": "https://your-domain.atlassian.net/rest/api/3/issue/EX-1/watchers", + "isWatching": false, + "watchCount": 1, + "watchers": [ + { + "self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g", + "accountId": "5b10a2844c20165700ede21g", + "displayName": "Mia Krystof", + "active": false + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_worklogs.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_worklogs.json new file mode 100644 index 000000000000..b298cef96fb6 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issue_worklogs.json @@ -0,0 +1,48 @@ +{ + "startAt": 0, + "maxResults": 1, + "total": 1, + "worklogs": [ + { + "self": "https://your-domain.atlassian.net/rest/api/3/issue/10010/worklog/10000", + "author": { + "self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g", + "accountId": "5b10a2844c20165700ede21g", + "displayName": "Mia Krystof", + "active": false + }, + "updateAuthor": { + "self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g", + "accountId": "5b10a2844c20165700ede21g", + "displayName": "Mia Krystof", + "active": false + }, + "comment": { + "type": "doc", + "version": 1, + "content": [ + { + "type": "paragraph", + "content": [ + { + "type": "text", + "text": "I did some work here." + } + ] + } + ] + }, + "updated": "2021-01-18T23:45:00.000+0000", + "visibility": { + "type": "group", + "value": "jira-developers", + "identifier": "276f955c-63d7-42c8-9520-92d01dca0625" + }, + "started": "2021-01-17T12:34:00.000+0000", + "timeSpent": "3h 20m", + "timeSpentSeconds": 12000, + "id": "100028", + "issueId": "10002" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues.json new file mode 100644 index 000000000000..a970c050c7be --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues.json @@ -0,0 +1,252 @@ +{ + "issues": [ + { + "expand": "operations,customfield_10030.properties,versionedRepresentations,editmeta,changelog,customfield_10029.properties,customfield_10010.requestTypePractice,renderedFields", + "id": "10627", + "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10627", + "key": "TESTKEY13-1", + "fields": { + "statuscategorychangedate": "2022-06-09T16:29:32.382-0700", + "issuetype": { + "self": "https://airbyteio.atlassian.net/rest/api/3/issuetype/10000", + "id": "10000", + "description": "A big user story that needs to be broken down. Created by Jira Software - do not edit or delete.", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/issuetypes/epic.svg", + "name": "Epic", + "subtask": false, + "hierarchyLevel": 1 + }, + "development": "", + "timespent": null, + "customfield_10030": null, + "project": { + "self": "https://airbyteio.atlassian.net/rest/api/3/project/10016", + "id": "10016", + "key": "TESTKEY13", + "name": "Test project 13", + "projectTypeKey": "software", + "simplified": false, + "avatarUrls": { + "48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425", + "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=small", + "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=xsmall", + "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=medium" + } + }, + "fixVersions": [], + "aggregatetimespent": null, + "resolution": null, + "customfield_10029": null, + "resolutiondate": null, + "workratio": -1, + "watches": { + "self": "https://airbyteio.atlassian.net/rest/api/3/issue/TESTKEY13-1/watchers", + "watchCount": 1, + "isWatching": true + }, + "lastViewed": "2022-12-09T06:08:31.026-0800", + "issuerestriction": { + "issuerestrictions": {}, + "shouldDisplay": false + }, + "customfield_10181": null, + "created": "2022-06-09T16:29:31.871-0700", + "customfield_10020": null, + "customfield_10021": null, + "customfield_10022": null, + "customfield_10023": null, + "priority": { + "self": "https://airbyteio.atlassian.net/rest/api/3/priority/4", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/priorities/low.svg", + "name": "Low", + "id": "4" + }, + "customfield_10024": null, + "customfield_10025": null, + "labels": [ + "test" + ], + "customfield_10026": null, + "customfield_10016": null, + "customfield_10017": "dark_orange", + "customfield_10215": null, + "customfield_10018": { + "hasEpicLinkFieldDependency": false, + "showField": false, + "nonEditableReason": { + "reason": "PLUGIN_LICENSE_ERROR", + "message": "The Parent Link is only available to Jira Premium users." + } + }, + "customfield_10019": "0|i0077b:", + "timeestimate": null, + "aggregatetimeoriginalestimate": null, + "versions": [], + "issuelinks": [], + "assignee": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "accountType": "atlassian" + }, + "updated": "2022-12-08T02:22:18.889-0800", + "status": { + "self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", + "description": "", + "iconUrl": "https://airbyteio.atlassian.net/", + "name": "To Do", + "id": "10000", + "statusCategory": { + "self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", + "id": 2, + "key": "new", + "colorName": "blue-gray", + "name": "To Do" + } + }, + "components": [ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/component/10065", + "id": "10065", + "name": "Component 0", + "description": "This is a Jira component" + } + ], + "timeoriginalestimate": null, + "description": { + "version": 1, + "type": "doc", + "content": [ + { + "type": "paragraph", + "content": [ + { + "type": "text", + "text": "Test issue" + } + ] + } + ] + }, + "customfield_10010": null, + "customfield_10011": "EPIC NAME TEXT", + "customfield_10210": null, + "customfield_10012": { + "self": "https://airbyteio.atlassian.net/rest/api/3/customFieldOption/10016", + "value": "To Do", + "id": "10016" + }, + "customfield_10211": null, + "customfield_10013": "ghx-label-14", + "customfield_10212": null, + "customfield_10014": null, + "customfield_10015": null, + "timetracking": {}, + "customfield_10213": null, + "customfield_10005": null, + "customfield_10006": null, + "security": null, + "customfield_10007": null, + "customfield_10008": null, + "aggregatetimeestimate": null, + "customfield_10009": "2022-12-09T00:00:00.000-0800", + "attachment": [], + "customfield_10209": null, + "summary": "My Summary", + "creator": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "accountType": "atlassian" + }, + "subtasks": [], + "reporter": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "accountType": "atlassian" + }, + "aggregateprogress": { + "progress": 0, + "total": 0 + }, + "customfield_10001": null, + "customfield_10002": null, + "customfield_10047": null, + "customfield_10003": [ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "accountType": "atlassian" + } + ], + "customfield_10004": null, + "environment": null, + "duedate": null, + "progress": { + "progress": 0, + "total": 0 + }, + "votes": { + "self": "https://airbyteio.atlassian.net/rest/api/3/issue/TESTKEY13-1/votes", + "votes": 0, + "hasVoted": false + }, + "comment": { + "comments": [], + "self": "https://airbyteio.atlassian.net/rest/api/3/issue/10627/comment", + "maxResults": 0, + "total": 0, + "startAt": 0 + }, + "worklog": { + "startAt": 0, + "maxResults": 20, + "total": 0, + "worklogs": [] + } + }, + "projectId": "10016", + "projectKey": "TESTKEY13", + "created": "2022-06-09T16:29:31.871-0700", + "updated": "2022-12-08T02:22:18.889-0800" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_field_configurations.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_field_configurations.json new file mode 100644 index 000000000000..836741367613 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_field_configurations.json @@ -0,0 +1,10 @@ +{ + "values": [ + { + "id": 10000, + "name": "Default Field Configuration", + "description": "The default field configuration", + "isDefault": true + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_link_types.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_link_types.json new file mode 100644 index 000000000000..4d155274f9fb --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_link_types.json @@ -0,0 +1,25 @@ +{ + "issueLinkTypes": [ + { + "id": "10000", + "name": "Blocks", + "inward": "is blocked by", + "outward": "blocks", + "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10000" + }, + { + "id": "10001", + "name": "Cloners", + "inward": "is cloned by", + "outward": "clones", + "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10001" + }, + { + "id": "10002", + "name": "Duplicate", + "inward": "is duplicated by", + "outward": "duplicates", + "self": "https://airbyteio.atlassian.net/rest/api/3/issueLinkType/10002" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_navigator_settings.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_navigator_settings.json new file mode 100644 index 000000000000..b1e458116430 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/issues_navigator_settings.json @@ -0,0 +1,14 @@ +[ + { + "label": "Issue Type", + "value": "issuetype" + }, + { + "label": "Key", + "value": "issuekey" + }, + { + "label": "Summary", + "value": "summary" + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/jira_settings.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/jira_settings.json new file mode 100644 index 000000000000..9a4fd5009807 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/jira_settings.json @@ -0,0 +1,17 @@ +[ + { + "id": "jira.issuenav.criteria.autoupdate", + "key": "jira.issuenav.criteria.autoupdate", + "value": "true", + "name": "Auto Update Criteria", + "desc": "Turn on to update search results automatically", + "type": "boolean" + }, + { + "id": "jira.clone.prefix", + "key": "jira.clone.prefix", + "value": "CLONE -", + "name": "The prefix added to the Summary field of cloned issues", + "type": "string" + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/labels.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/labels.json new file mode 100644 index 000000000000..251696ac53c8 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/labels.json @@ -0,0 +1,10 @@ +{ + "maxResults": 2, + "startAt": 0, + "total": 100, + "isLast": false, + "values": [ + "performance", + "security" + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/permissions.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/permissions.json new file mode 100644 index 000000000000..c9a0e2b6b2f2 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/permissions.json @@ -0,0 +1,10 @@ +{ + "permissions": { + "BULK_CHANGE": { + "key": "BULK_CHANGE", + "name": "Bulk Change", + "type": "GLOBAL", + "description": "Ability to modify a collection of issues at once. For example, resolve multiple issues in one step." + } + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_components.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_components.json new file mode 100644 index 000000000000..b81cdb7cd4db --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_components.json @@ -0,0 +1,146 @@ +{ + "values": [ + { + "componentBean": { + "self": "https://airbyteio.atlassian.net/rest/api/3/component/10047", + "id": "10047", + "name": "Component 0", + "description": "This is a Jira component", + "lead": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true + }, + "assigneeType": "PROJECT_LEAD", + "assignee": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true + }, + "realAssigneeType": "PROJECT_LEAD", + "realAssignee": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true + }, + "isAssigneeTypeValid": true, + "project": "IT", + "projectId": 10000 + }, + "issueCount": 0, + "realAssignee": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true + }, + "isAssigneeTypeValid": true, + "realAssigneeType": "PROJECT_LEAD", + "description": "This is a Jira component", + "name": "Component 0", + "id": "10047", + "self": "https://airbyteio.atlassian.net/rest/api/3/component/10047", + "projectId": 10000, + "project": "IT", + "assignee": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true + }, + "assigneeType": "PROJECT_LEAD", + "lead": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true + } + }, + { + "componentBean": { + "self": "https://airbyteio.atlassian.net/rest/api/3/component/10000", + "id": "10000", + "name": "Component 1", + "description": "Component 1", + "lead": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true + }, + "assigneeType": "PROJECT_DEFAULT", + "realAssigneeType": "PROJECT_DEFAULT", + "isAssigneeTypeValid": false, + "project": "IT", + "projectId": 10000 + }, + "issueCount": 0, + "isAssigneeTypeValid": false, + "realAssigneeType": "PROJECT_DEFAULT", + "description": "Component 1", + "name": "Component 1", + "id": "10000", + "self": "https://airbyteio.atlassian.net/rest/api/3/component/10000", + "projectId": 10000, + "project": "IT", + "assigneeType": "PROJECT_DEFAULT", + "lead": { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true + } + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_email.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_email.json new file mode 100644 index 000000000000..a16798f2ccf2 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_email.json @@ -0,0 +1,10 @@ +[ + { + "emailAddress": "jira@airbyteio.atlassian.net", + "projectId": "10000" + }, + { + "emailAddress": "jira@airbyteio.atlassian.net", + "projectId": "10016" + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_permissions.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_permissions.json new file mode 100644 index 000000000000..a5c2cedad686 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/project_permissions.json @@ -0,0 +1,16 @@ +{ + "levels": [ + { + "self": "https://your-domain.atlassian.net/rest/api/3/securitylevel/100000", + "id": "100000", + "description": "Only the reporter and internal staff can see this issue.", + "name": "Reporter Only" + }, + { + "self": "https://your-domain.atlassian.net/rest/api/3/securitylevel/100001", + "id": "100001", + "description": "Only internal staff can see this issue.", + "name": "Staff Only" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects.json new file mode 100644 index 000000000000..b155807cea6c --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects.json @@ -0,0 +1,42 @@ +{ + "values": [ + { + "expand": "description,lead,issueTypes,url,projectKeys,permissions,insight", + "self": "https://airbyteio.atlassian.net/rest/api/3/project/10000", + "id": "1", + "key": "Project1", + "description": "", + "name": "integration-tests", + "avatarUrls": { + "48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424", + "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=small", + "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=xsmall", + "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10424?size=medium" + }, + "projectTypeKey": "software", + "simplified": false, + "style": "classic", + "isPrivate": false, + "properties": {} + }, + { + "expand": "description,lead,issueTypes,url,projectKeys,permissions,insight", + "self": "https://airbyteio.atlassian.net/rest/api/3/project/10016", + "id": "2", + "key": "Project1", + "description": "Test project 13 description", + "name": "Test project 13", + "avatarUrls": { + "48x48": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425", + "24x24": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=small", + "16x16": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=xsmall", + "32x32": "https://airbyteio.atlassian.net/rest/api/3/universal_avatar/view/type/project/avatar/10425?size=medium" + }, + "projectTypeKey": "software", + "simplified": false, + "style": "classic", + "isPrivate": false, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_avatars.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_avatars.json new file mode 100644 index 000000000000..0c0ead56df9b --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_avatars.json @@ -0,0 +1,30 @@ +{ + "custom": [ + { + "id": "1", + "isSystemAvatar": true, + "isSelected": false, + "isDeletable": false, + "urls": { + "16x16": "/secure/viewavatar?size=xsmall&avatarId=10400&avatarType=project", + "24x24": "/secure/viewavatar?size=small&avatarId=10400&avatarType=project", + "32x32": "/secure/viewavatar?size=medium&avatarId=10400&avatarType=project", + "48x48": "/secure/viewavatar?avatarId=10400&avatarType=project" + } + } + ], + "system": [ + { + "id": "2", + "isSystemAvatar": true, + "isSelected": false, + "isDeletable": false, + "urls": { + "16x16": "/secure/viewavatar?size=xsmall&avatarId=10401&avatarType=project", + "24x24": "/secure/viewavatar?size=small&avatarId=10401&avatarType=project", + "32x32": "/secure/viewavatar?size=medium&avatarId=10401&avatarType=project", + "48x48": "/secure/viewavatar?avatarId=10401&avatarType=project" + } + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_categories.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_categories.json new file mode 100644 index 000000000000..d9a1eb92b67b --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_categories.json @@ -0,0 +1,14 @@ +[ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/projectCategory/10000", + "id": "10000", + "description": "Category 1", + "name": "Category 1" + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/projectCategory/10001", + "id": "10001", + "description": "Category 2", + "name": "Category 2" + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_versions.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_versions.json new file mode 100644 index 000000000000..ae4f8c424a07 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/projects_versions.json @@ -0,0 +1,38 @@ +{ + "self": "https://your-domain.atlassian.net/rest/api/3/project/PR/version?startAt=0&maxResults=2", + "nextPage": "https://your-domain.atlassian.net/rest/api/3/project/PR/version?startAt=2&maxResults=2", + "maxResults": 2, + "startAt": 2, + "total": 7, + "isLast": true, + "values": [ + { + "self": "https://your-domain.atlassian.net/rest/api/3/version/10000", + "id": "1", + "description": "An excellent version", + "name": "New Version 1", + "archived": false, + "released": true, + "releaseDate": "2010-07-06", + "overdue": true, + "userReleaseDate": "6/Jul/2010", + "projectId": 1 + }, + { + "self": "https://your-domain.atlassian.net/rest/api/3/version/10010", + "id": "2", + "description": "Minor Bugfix version", + "name": "Next Version", + "archived": false, + "released": false, + "overdue": false, + "projectId": 1, + "issuesStatusForFixVersion": { + "unmapped": 0, + "toDo": 10, + "inProgress": 20, + "done": 100 + } + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/screen_tabs.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/screen_tabs.json new file mode 100644 index 000000000000..ec0a5ee79505 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/screen_tabs.json @@ -0,0 +1,10 @@ +[ + { + "id": 10000, + "name": "Field Tab" + }, + { + "id": 10001, + "name": "Field Tab" + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/screens.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/screens.json new file mode 100644 index 000000000000..b7ae1067088a --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/screens.json @@ -0,0 +1,14 @@ +{ + "values": [ + { + "id": 1, + "name": "Default Screen", + "description": "Allows to update all system fields." + }, + { + "id": 2, + "name": "Workflow Screen", + "description": "This screen is used in the workflow and enables you to assign issues" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/sprint_issues.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/sprint_issues.json new file mode 100644 index 000000000000..e6f405b04089 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/sprint_issues.json @@ -0,0 +1,33 @@ +{ + "issues": [ + { + "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", + "id": "2-10012", + "self": "https://airbyteio.atlassian.net/rest/agile/1.0/issue/10012", + "key": "IT-6", + "fields": { + "customfield_10016": null, + "updated": "2022-05-17T04:26:21.613-0700", + "created": "2021-03-11T06:14:18.085-0800", + "status": { + "self": "https://airbyteio.atlassian.net/rest/api/2/status/10000", + "description": "", + "iconUrl": "https://airbyteio.atlassian.net/", + "name": "To Do", + "id": "10000", + "statusCategory": { + "self": "https://airbyteio.atlassian.net/rest/api/2/statuscategory/2", + "id": 2, + "key": "new", + "colorName": "blue-gray", + "name": "To Do" + } + } + }, + "issueId": "10012", + "sprintId": 2, + "created": "2021-03-11T06:14:18.085-0800", + "updated": "2022-05-17T04:26:21.613-0700" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/sprints.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/sprints.json new file mode 100644 index 000000000000..e254a83380e4 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/sprints.json @@ -0,0 +1,14 @@ +{ + "values": [ + { + "id": 2, + "self": "https://airbyteio.atlassian.net/rest/agile/1.0/sprint/2", + "state": "active", + "name": "IT Sprint 1", + "startDate": "2022-05-17T11:25:59.072Z", + "endDate": "2022-05-31T11:25:00.000Z", + "originBoardId": 1, + "goal": "Deliver results" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/time_tracking.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/time_tracking.json new file mode 100644 index 000000000000..e003b94aacb5 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/time_tracking.json @@ -0,0 +1,6 @@ +[ + { + "key": "JIRA", + "name": "JIRA provided time tracking" + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/users.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/users.json new file mode 100644 index 000000000000..b526d3ca43ab --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/users.json @@ -0,0 +1,26 @@ +[ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "1", + "accountType": "atlassian", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + } + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "2", + "accountType": "atlassian", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + } + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/users_groups_detailed.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/users_groups_detailed.json new file mode 100644 index 000000000000..42f10c5fde79 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/users_groups_detailed.json @@ -0,0 +1,208 @@ +[ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=5fc9e78d2730d800760becc4", + "accountId": "5fc9e78d2730d800760becc4", + "accountType": "atlassian", + "emailAddress": "integration-test@airbyte.io", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "24x24": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "16x16": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png", + "32x32": "https://secure.gravatar.com/avatar/0a7841feac7218131ce7b427283c24ef?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FIT-5.png" + }, + "displayName": "integration test", + "active": true, + "timeZone": "America/Los_Angeles", + "locale": "en_US", + "groups": { + "size": 27, + "items": [ + { + "name": "administrators", + "groupId": "0ca6e087-7a61-4986-a269-98fe268854a1", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=0ca6e087-7a61-4986-a269-98fe268854a1" + }, + { + "name": "confluence-users", + "groupId": "38d808e9-113f-45c4-817b-099e953b687a", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=38d808e9-113f-45c4-817b-099e953b687a" + }, + { + "name": "integration-test-group", + "groupId": "5f1ec851-f8da-4f90-ab42-8dc50a9f99d8", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=5f1ec851-f8da-4f90-ab42-8dc50a9f99d8" + }, + { + "name": "jira-administrators", + "groupId": "58582f33-a5a6-43b9-92a6-ff0bbacb49ae", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=58582f33-a5a6-43b9-92a6-ff0bbacb49ae" + }, + { + "name": "jira-software-users", + "groupId": "4452b254-035d-469a-a422-1f4666dce50e", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e" + }, + { + "name": "jira-users", + "groupId": "2513da2e-08cf-4415-9bcd-cbbd32fa227d", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=2513da2e-08cf-4415-9bcd-cbbd32fa227d" + }, + { + "name": "site-admins", + "groupId": "76dad095-fc1a-467a-88b4-fde534220985", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=76dad095-fc1a-467a-88b4-fde534220985" + }, + { + "name": "Test group 0", + "groupId": "ee8d15d1-6462-406a-b0a6-8065b7e4cdd7", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=ee8d15d1-6462-406a-b0a6-8065b7e4cdd7" + }, + { + "name": "Test group 1", + "groupId": "bda1faf1-1a1a-42d1-82e4-a428c8b8f67c", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=bda1faf1-1a1a-42d1-82e4-a428c8b8f67c" + }, + { + "name": "Test group 10", + "groupId": "e9f74708-e33c-4158-919d-6457f50c6e74", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=e9f74708-e33c-4158-919d-6457f50c6e74" + }, + { + "name": "Test group 11", + "groupId": "b0e6d76f-701a-4208-a88d-4478f242edde", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=b0e6d76f-701a-4208-a88d-4478f242edde" + }, + { + "name": "Test group 12", + "groupId": "dddc24a0-ef00-407e-abef-5a660b6f55cf", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=dddc24a0-ef00-407e-abef-5a660b6f55cf" + }, + { + "name": "Test group 13", + "groupId": "dbe4af74-8387-4b08-843b-86af78dd738e", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=dbe4af74-8387-4b08-843b-86af78dd738e" + }, + { + "name": "Test group 14", + "groupId": "d4570a20-38d8-44cc-a63b-0924d0d0d0ff", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=d4570a20-38d8-44cc-a63b-0924d0d0d0ff" + }, + { + "name": "Test group 15", + "groupId": "87bde5c0-7231-44a7-88b5-421da2ab8052", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=87bde5c0-7231-44a7-88b5-421da2ab8052" + }, + { + "name": "Test group 16", + "groupId": "538b6aa2-bf57-402f-93c0-c2e2d68b7155", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=538b6aa2-bf57-402f-93c0-c2e2d68b7155" + }, + { + "name": "Test group 17", + "groupId": "022bc924-ac57-442d-80c9-df042b73ad87", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=022bc924-ac57-442d-80c9-df042b73ad87" + }, + { + "name": "Test group 18", + "groupId": "bbfc6fc9-96db-4e66-88f4-c55b08298272", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=bbfc6fc9-96db-4e66-88f4-c55b08298272" + }, + { + "name": "Test group 19", + "groupId": "3c4fef5d-9721-4f20-9a68-346d222de3cf", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=3c4fef5d-9721-4f20-9a68-346d222de3cf" + }, + { + "name": "Test group 2", + "groupId": "5ddb26f1-2d31-414a-ac34-b2d6de38805d", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=5ddb26f1-2d31-414a-ac34-b2d6de38805d" + }, + { + "name": "Test group 3", + "groupId": "638aa1ad-8707-4d56-9361-f5959b6c4785", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=638aa1ad-8707-4d56-9361-f5959b6c4785" + }, + { + "name": "Test group 4", + "groupId": "532554e0-43be-4eca-9186-b417dcf38547", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=532554e0-43be-4eca-9186-b417dcf38547" + }, + { + "name": "Test group 5", + "groupId": "6b663734-85b6-4185-8fb2-9ac27709b3aa", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=6b663734-85b6-4185-8fb2-9ac27709b3aa" + }, + { + "name": "Test group 6", + "groupId": "2d4af5cf-cd34-4e78-9445-abc000cdd5cc", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=2d4af5cf-cd34-4e78-9445-abc000cdd5cc" + }, + { + "name": "Test group 7", + "groupId": "e8a97909-d807-4f79-8548-1f2c156ae6f0", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=e8a97909-d807-4f79-8548-1f2c156ae6f0" + }, + { + "name": "Test group 8", + "groupId": "3ee851e7-6688-495a-a6f6-737e85a23878", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=3ee851e7-6688-495a-a6f6-737e85a23878" + }, + { + "name": "Test group 9", + "groupId": "af27d0b1-4378-443f-9a6d-f878848b144a", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=af27d0b1-4378-443f-9a6d-f878848b144a" + } + ] + }, + "applicationRoles": { + "size": 1, + "items": [ + { + "key": "jira-software", + "name": "Jira Software" + } + ] + }, + "expand": "groups,applicationRoles" + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/user?accountId=557058:f58131cb-b67d-43c7-b30d-6b58d40bd077", + "accountId": "557058:f58131cb-b67d-43c7-b30d-6b58d40bd077", + "accountType": "app", + "avatarUrls": { + "48x48": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", + "24x24": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", + "16x16": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png", + "32x32": "https://secure.gravatar.com/avatar/600529a9c8bfef89daa848e6db28ed2d?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FAJ-0.png" + }, + "displayName": "Automation for Jira", + "active": true, + "timeZone": "America/Los_Angeles", + "locale": "en_US", + "groups": { + "size": 2, + "items": [ + { + "name": "atlassian-addons-admin", + "groupId": "90b9ffb1-ed26-4b5e-af59-8f684900ce83", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=90b9ffb1-ed26-4b5e-af59-8f684900ce83" + }, + { + "name": "jira-software-users", + "groupId": "4452b254-035d-469a-a422-1f4666dce50e", + "self": "https://airbyteio.atlassian.net/rest/api/3/group?groupId=4452b254-035d-469a-a422-1f4666dce50e" + } + ] + }, + "applicationRoles": { + "size": 1, + "items": [ + { + "key": "jira-software", + "name": "Jira Software" + } + ] + }, + "expand": "groups,applicationRoles" + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_schemas.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_schemas.json new file mode 100644 index 000000000000..71b07527775f --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_schemas.json @@ -0,0 +1,20 @@ +{ + "values": [ + { + "id": 10000, + "name": "classic", + "description": "classic", + "defaultWorkflow": "classic default workflow", + "issueTypeMappings": {}, + "self": "https://airbyteio.atlassian.net/rest/api/3/workflowscheme/10000" + }, + { + "id": 10001, + "name": "IT: Software Simplified Workflow Scheme", + "description": "Generated by JIRA Software version 1001.0.0-SNAPSHOT. This workflow scheme is managed internally by Jira Software. Do not manually modify this workflow scheme.", + "defaultWorkflow": "Software Simplified Workflow for Project IT", + "issueTypeMappings": {}, + "self": "https://airbyteio.atlassian.net/rest/api/3/workflowscheme/10001" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_status_categories.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_status_categories.json new file mode 100644 index 000000000000..6099fcd99446 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_status_categories.json @@ -0,0 +1,16 @@ +[ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/1", + "id": 1, + "key": "undefined", + "colorName": "medium-gray", + "name": "No Category" + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", + "id": 2, + "key": "new", + "colorName": "blue-gray", + "name": "To Do" + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_statuses.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_statuses.json new file mode 100644 index 000000000000..210811cb20cb --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflow_statuses.json @@ -0,0 +1,32 @@ +[ + { + "self": "https://airbyteio.atlassian.net/rest/api/3/status/3", + "description": "This issue is being actively worked on at the moment by the assignee.", + "iconUrl": "https://airbyteio.atlassian.net/images/icons/statuses/inprogress.png", + "name": "In Progress", + "untranslatedName": "In Progress", + "id": "3", + "statusCategory": { + "self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/4", + "id": 4, + "key": "indeterminate", + "colorName": "yellow", + "name": "In Progress" + } + }, + { + "self": "https://airbyteio.atlassian.net/rest/api/3/status/10000", + "description": "", + "iconUrl": "https://airbyteio.atlassian.net/", + "name": "To Do", + "untranslatedName": "To Do", + "id": "10000", + "statusCategory": { + "self": "https://airbyteio.atlassian.net/rest/api/3/statuscategory/2", + "id": 2, + "key": "new", + "colorName": "blue-gray", + "name": "To Do" + } + } +] \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflows.json b/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflows.json new file mode 100644 index 000000000000..04828d7d8926 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/responses/workflows.json @@ -0,0 +1,22 @@ +{ + "values": [ + { + "id": { + "name": "Builds Workflow", + "entityId": "Builds Workflow" + }, + "description": "Builds Workflow", + "created": "1969-12-31T16:00:00.000-0800", + "updated": "1969-12-31T16:00:00.000-0800" + }, + { + "id": { + "name": "classic default workflow", + "entityId": "385bb764-dfb6-89a7-2e43-a25bdd0cbaf4" + }, + "description": "The classic JIRA default workflow", + "created": "2020-12-03T23:41:38.951-0800", + "updated": "2020-12-03T23:41:57.343-0800" + } + ] +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/test_source.py b/airbyte-integrations/connectors/source-jira/unit_tests/test_source.py new file mode 100644 index 000000000000..285431806007 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/test_source.py @@ -0,0 +1,41 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from unittest.mock import MagicMock + +import responses +from source_jira.source import SourceJira + + +@responses.activate +def test_streams(config): + source = SourceJira() + streams = source.streams(config) + expected_streams_number = 51 + assert len(streams) == expected_streams_number + + +@responses.activate +def test_check_connection(config, projects_response, labels_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/project/search?maxResults=50&expand=description", + json=projects_response, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/label?maxResults=50", + json=labels_response, + ) + source = SourceJira() + logger_mock = MagicMock() + + assert source.check_connection(logger=logger_mock, config=config) == (True, None) + + +def test_get_authenticator(config): + source = SourceJira() + authenticator = source.get_authenticator(config=config) + + assert authenticator.get_auth_header() == {'Authorization': 'Basic ZW1haWxAZW1haWwuY29tOnRva2Vu'} diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-jira/unit_tests/test_streams.py new file mode 100644 index 000000000000..1c68f0e196e3 --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/test_streams.py @@ -0,0 +1,871 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest +import responses +from airbyte_cdk.models import SyncMode +from requests.exceptions import HTTPError +from source_jira.source import SourceJira +from source_jira.streams import ( + ApplicationRoles, + Avatars, + BoardIssues, + Boards, + Dashboards, + Filters, + FilterSharing, + Groups, + IssueComments, + IssueCustomFieldContexts, + IssueFieldConfigurations, + IssueFields, + IssueLinkTypes, + IssueNavigatorSettings, + IssueNotificationSchemes, + IssuePriorities, + IssuePropertyKeys, + IssueRemoteLinks, + IssueResolutions, + Issues, + IssueSecuritySchemes, + IssueTypeSchemes, + IssueVotes, + IssueWatchers, + IssueWorklogs, + JiraSettings, + Labels, + Permissions, + ProjectAvatars, + ProjectCategories, + ProjectComponents, + ProjectEmail, + ProjectPermissionSchemes, + Projects, + ProjectVersions, + Screens, + ScreenTabs, + SprintIssues, + Sprints, + TimeTracking, + Users, + UsersGroupsDetailed, + Workflows, + WorkflowSchemes, + WorkflowStatusCategories, + WorkflowStatuses, +) + + +@responses.activate +def test_application_roles_stream(config, application_roles_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/applicationrole?maxResults=50", + json=application_roles_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ApplicationRoles(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_application_roles_stream_http_error(config, application_roles_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/applicationrole?maxResults=50", + json={'error': 'not found'}, status=404 + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ApplicationRoles(**args) + with pytest.raises(HTTPError): + [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + + +@responses.activate +def test_boards_stream(config, boards_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/agile/1.0/board?maxResults=50", + json=boards_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Boards(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 1 + + +@responses.activate +def test_dashboards_stream(config, dashboards_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/dashboard?maxResults=50", + json=dashboards_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Dashboards(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_filters_stream(config, filters_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/filter/search?maxResults=50&expand=description%2Cowner%2Cjql%2CviewUrl%2CsearchUrl%2Cfavourite%2CfavouritedCount%2CsharePermissions%2CisWritable%2Csubscriptions", + json=filters_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Filters(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_groups_stream(config, groups_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/group/bulk?maxResults=50", + json=groups_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Groups(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 4 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issues_fields_stream(config, issue_fields_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/field?maxResults=50", + json=issue_fields_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueFields(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issues_field_configurations_stream(config, issues_field_configurations_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/fieldconfiguration?maxResults=50", + json=issues_field_configurations_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueFieldConfigurations(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issues_link_types_stream(config, issues_link_types_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issueLinkType?maxResults=50", + json=issues_link_types_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueLinkTypes(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issues_navigator_settings_stream(config, issues_navigator_settings_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/settings/columns?maxResults=50", + json=issues_navigator_settings_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueNavigatorSettings(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_notification_schemas_stream(config, issue_notification_schemas_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/notificationscheme?maxResults=50", + json=issue_notification_schemas_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueNotificationSchemes(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_properties_stream(config, issue_properties_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/priority/search?maxResults=50", + json=issue_properties_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssuePriorities(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_resolutions_stream(config, issue_resolutions_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/resolution/search?maxResults=50", + json=issue_resolutions_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueResolutions(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_security_schemes_stream(config, issue_security_schemes_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issuesecurityschemes?maxResults=50", + json=issue_security_schemes_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueSecuritySchemes(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_type_schemes_stream(config, issue_type_schemes_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issuetypescheme?maxResults=50", + json=issue_type_schemes_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueTypeSchemes(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 1 + + +@responses.activate +def test_jira_settings_stream(config, jira_settings_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/application-properties?maxResults=50", + json=jira_settings_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = JiraSettings(**args) + + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_board_issues_stream(config, board_issues_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/agile/1.0/board/1/issue?maxResults=50&fields=key&fields=created&fields=updated", + json=board_issues_response, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/agile/1.0/board/2/issue?maxResults=50&fields=key&fields=created&fields=updated", + json={}, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/agile/1.0/board/3/issue?maxResults=50&fields=key&fields=created&fields=updated", + json={}, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = BoardIssues(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 1 + assert len(responses.calls) == 3 + + +@responses.activate +def test_filter_sharing_stream(config, filter_sharing_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/filter/1/permission?maxResults=50", + json=filter_sharing_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = FilterSharing(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_projects_stream(config, projects_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/project/search?maxResults=50&expand=description", + json=projects_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Projects(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + + +@responses.activate +def test_projects_avatars_stream(config, projects_avatars_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/project/Project1/avatars?maxResults=50", + json=projects_avatars_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ProjectAvatars(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 4 + assert len(responses.calls) == 2 + + +@responses.activate +def test_projects_categories_stream(config, projects_categories_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/projectCategory?maxResults=50", + json=projects_categories_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ProjectCategories(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_screens_stream(config, screens_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/screens?maxResults=50", + json=screens_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Screens(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_screen_tabs_stream(config, screen_tabs_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/screens/1/tabs?maxResults=50", + json=screen_tabs_response, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/screens/2/tabs?maxResults=50", + json={}, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ScreenTabs(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 2 + + +@responses.activate +def test_sprints_stream(config, sprints_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/agile/1.0/board/1/sprint?maxResults=50", + json=sprints_response, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/agile/1.0/board/2/sprint?maxResults=50", + json=sprints_response, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/agile/1.0/board/3/sprint?maxResults=50", + json=sprints_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Sprints(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 3 + assert len(responses.calls) == 3 + + +@responses.activate +def test_sprint_issues_stream(config, sprints_issues_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/agile/1.0/sprint/2/issue?maxResults=50&fields=key&fields=status&fields=created&fields=updated", + json=sprints_issues_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = SprintIssues(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 3 + assert len(responses.calls) == 3 + + +@responses.activate +def test_time_tracking_stream(config, time_tracking_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/configuration/timetracking/list?maxResults=50", + json=time_tracking_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = TimeTracking(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_users_stream(config, users_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/users/search?maxResults=50", + json=users_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Users(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_users_groups_detailed_stream(config, users_groups_detailed_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/user?maxResults=50&accountId=1&expand=groups%2CapplicationRoles", + json=users_groups_detailed_response, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/user?maxResults=50&accountId=2&expand=groups%2CapplicationRoles", + json=users_groups_detailed_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = UsersGroupsDetailed(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 4 + assert len(responses.calls) == 2 + + +@responses.activate +def test_workflows_stream(config, workflows_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/workflow/search?maxResults=50", + json=workflows_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Workflows(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_workflow_schemas_stream(config, workflow_schemas_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/workflowscheme?maxResults=50", + json=workflow_schemas_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = WorkflowSchemes(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_workflow_statuses_stream(config, workflow_statuses_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/status?maxResults=50", + json=workflow_statuses_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = WorkflowStatuses(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_workflow_status_categories_stream(config, workflow_status_categories_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/statuscategory?maxResults=50", + json=workflow_status_categories_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = WorkflowStatusCategories(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.incremental)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_avatars_stream(config, avatars_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/avatar/issuetype/system?maxResults=50", + json=avatars_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Avatars(**args) + records = [r for r in + stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice={"avatar_type": "issuetype"})] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issues_stream(config, issues_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/search?maxResults=50&fields=%2Aall&jql=project+in+%28%271%27%2C+%272%27%29", + json=issues_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Issues(**args) + records = [r for r in + stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_comments_stream(config, issue_comments_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issue/TESTKEY13-1/comment?maxResults=50", + json=issue_comments_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueComments(**args) + records = [r for r in + stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_custom_field_contexts_stream(config, issue_custom_field_contexts_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/field/issuetype/context?maxResults=50", + json=issue_custom_field_contexts_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueCustomFieldContexts(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice={"field_id": "10130"})] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_property_keys_stream(config, issue_property_keys_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issue/TESTKEY13-1/properties?maxResults=50", + json=issue_property_keys_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssuePropertyKeys(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh, + stream_slice={"issue_key": "TESTKEY13-1", "key": "TESTKEY13-1"})] + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_project_permissions_stream(config, project_permissions_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/project/Project1/securitylevel?maxResults=50", + json=project_permissions_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ProjectPermissionSchemes(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh, + stream_slice={"key": "TESTKEY13-1"})] + assert len(records) == 4 + + +@responses.activate +def test_project_email_stream(config, project_email_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/project/1/email?maxResults=50", + json=project_email_response, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/project/2/email?maxResults=50", + json=project_email_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ProjectEmail(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh, + stream_slice={"key": "TESTKEY13-1"})] + assert len(records) == 4 + assert len(responses.calls) == 2 + + +@responses.activate +def test_project_components_stream(config, project_components_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/project/Project1/component?maxResults=50", + json=project_components_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ProjectComponents(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh, + stream_slice={"key": "Project1"})] + assert len(records) == 4 + assert len(responses.calls) == 2 + + +@responses.activate +def test_permissions_stream(config, permissions_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/permissions?maxResults=50", + json=permissions_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Permissions(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_labels_stream(config, labels_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/label?maxResults=50", + json=labels_response, + ) + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/label?maxResults=50&startAt=2", + json={}, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = Labels(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 2 + assert len(responses.calls) == 2 + + +@responses.activate +def test_issue_worklogs_stream(config, issue_worklogs_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issue/TESTKEY13-1/worklog?maxResults=50", + json=issue_worklogs_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueWorklogs(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_watchers_stream(config, issue_watchers_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issue/TESTKEY13-1/watchers?maxResults=50", + json=issue_watchers_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueWatchers(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh)] + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_votes_stream(config, issue_votes_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issue/TESTKEY13-1/votes?maxResults=50", + json=issue_votes_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueVotes(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice={"key": "Project1"})] + + assert len(records) == 1 + assert len(responses.calls) == 1 + + +@responses.activate +def test_issue_remote_links_stream(config, issue_remote_links_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/issue/TESTKEY13-1/remotelink?maxResults=50", + json=issue_remote_links_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = IssueRemoteLinks(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice={"key": "Project1"})] + + assert len(records) == 2 + assert len(responses.calls) == 1 + + +@responses.activate +def test_project_versions_stream(config, projects_versions_response): + responses.add( + responses.GET, + f"https://{config['domain']}/rest/api/3/project/Project1/version?maxResults=50", + json=projects_versions_response, + ) + + authenticator = SourceJira().get_authenticator(config=config) + args = {"authenticator": authenticator, "domain": config["domain"], "projects": config.get("projects", [])} + stream = ProjectVersions(**args) + records = [r for r in stream.read_records(sync_mode=SyncMode.full_refresh, stream_slice={"key": "Project1"})] + + assert len(records) == 4 + assert len(responses.calls) == 2 diff --git a/airbyte-integrations/connectors/source-jira/unit_tests/test_utils.py b/airbyte-integrations/connectors/source-jira/unit_tests/test_utils.py new file mode 100644 index 000000000000..3c52a656828b --- /dev/null +++ b/airbyte-integrations/connectors/source-jira/unit_tests/test_utils.py @@ -0,0 +1,17 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from source_jira.utils import safe_max + + +def test_safe_max_arg1_none(): + assert safe_max(None, 1) == 1 + + +def test_safe_max_arg2_none(): + assert safe_max(1, None) == 1 + + +def test_safe_max_both_args(): + assert safe_max(1, 2) == 2 diff --git a/airbyte-integrations/connectors/source-kafka/src/test-integration/java/io/airbyte/integrations/source/kafka/KafkaSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-kafka/src/test-integration/java/io/airbyte/integrations/source/kafka/KafkaSourceAcceptanceTest.java index 275cc6658c9a..da4feb6e8dbc 100644 --- a/airbyte-integrations/connectors/source-kafka/src/test-integration/java/io/airbyte/integrations/source/kafka/KafkaSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-kafka/src/test-integration/java/io/airbyte/integrations/source/kafka/KafkaSourceAcceptanceTest.java @@ -13,12 +13,12 @@ import io.airbyte.commons.resources.MoreResources; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.Collections; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-metabase/source_metabase/metabase.yaml b/airbyte-integrations/connectors/source-metabase/source_metabase/metabase.yaml index 573c83192796..38c1c6379d39 100644 --- a/airbyte-integrations/connectors/source-metabase/source_metabase/metabase.yaml +++ b/airbyte-integrations/connectors/source-metabase/source_metabase/metabase.yaml @@ -3,12 +3,12 @@ version: "0.3.0" definitions: selector: extractor: - field_pointer: [ ] + field_pointer: [] data_field_selector: type: RecordSelector extractor: type: DpathExtractor - field_pointer: [ "data" ] + field_pointer: ["data"] requester: url_base: "{{ config['instance_api_url'] }}" http_method: "GET" @@ -76,4 +76,4 @@ streams: check: stream_names: - - "activity" \ No newline at end of file + - "activity" diff --git a/airbyte-integrations/connectors/source-monday/source_monday/monday.yaml b/airbyte-integrations/connectors/source-monday/source_monday/monday.yaml index 283cb34ac7c6..2e058e23f7d5 100644 --- a/airbyte-integrations/connectors/source-monday/source_monday/monday.yaml +++ b/airbyte-integrations/connectors/source-monday/source_monday/monday.yaml @@ -9,8 +9,8 @@ definitions: extractor: type: DpathExtractor field_pointer: - - "data" - - "{{ options['name'] }}" + - "data" + - "{{ options['name'] }}" requester: url_base: "https://api.monday.com/v2" http_method: "GET" @@ -101,4 +101,4 @@ streams: check: stream_names: - - "users" \ No newline at end of file + - "users" diff --git a/airbyte-integrations/connectors/source-mongodb-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mongodb/MongodbSourceStrictEncryptAcceptanceTest.java b/airbyte-integrations/connectors/source-mongodb-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mongodb/MongodbSourceStrictEncryptAcceptanceTest.java index aa440c0fee08..90446ff09b3f 100644 --- a/airbyte-integrations/connectors/source-mongodb-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mongodb/MongodbSourceStrictEncryptAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mongodb-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mongodb/MongodbSourceStrictEncryptAcceptanceTest.java @@ -21,13 +21,13 @@ import io.airbyte.db.mongodb.MongoUtils.MongoInstanceType; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.nio.file.Files; import java.nio.file.Path; diff --git a/airbyte-integrations/connectors/source-mongodb-v2/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-mongodb-v2/integration_tests/configured_catalog.json index 495e8138a92d..d8637ff7bdfa 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-mongodb-v2/integration_tests/configured_catalog.json @@ -1,284 +1,281 @@ { - "streams": [ - { - "stream": { - "name": "listingsAndReviews", - "json_schema": { - "type": "object", - "properties": { - "amenities": { - "type": "array" - }, - "notes": { - "type": "string" - }, - "access": { - "type": "string" - }, - "house_rules": { - "type": "string" - }, - "first_review": { - "type": "string" - }, - "calendar_last_scraped": { - "type": "string" - }, - "description": { - "type": "string" - }, - "neighborhood_overview": { - "type": "string" - }, - "_id_aibyte_transform": { - "type": "string" - }, - "availability": { - "type": "object", - "properties": { - "availability_365": { - "type": "number" - }, - "availability_30": { - "type": "number" - }, - "availability_60": { - "type": "number" - }, - "availability_90": { - "type": "number" - } - } - }, - "number_of_reviews": { - "type": "number" - }, - "space": { - "type": "string" - }, - "review_scores": { - "type": "object", - "properties": { - "review_scores_checkin": { - "type": "number" - }, - "review_scores_communication": { - "type": "number" - }, - "review_scores_rating": { - "type": "number" - }, - "review_scores_accuracy": { - "type": "number" - }, - "review_scores_location": { - "type": "number" - }, - "review_scores_value": { - "type": "number" - }, - "review_scores_cleanliness": { - "type": "number" - } - } - }, - "cleaning_fee": { - "type": "number" - }, - "reviews": { - "type": "array" - }, - "price": { - "type": "number" - }, - "reviews_per_month": { - "type": "number" - }, - "host": { - "type": "object", - "properties": { - "host_verifications": { - "type": "array" - }, - "host_url": { - "type": "string" - }, - "host_response_time": { - "type": "string" - }, - "host_has_profile_pic": { - "type": "boolean" - }, - "host_about": { - "type": "string" - }, - "host_picture_url": { - "type": "string" - }, - "host_id": { - "type": "string" - }, - "host_listings_count": { - "type": "number" - }, - "host_total_listings_count": { - "type": "number" - }, - "host_location": { - "type": "string" - }, - "host_is_superhost": { - "type": "boolean" - }, - "host_neighbourhood": { - "type": "string" - }, - "host_thumbnail_url": { - "type": "string" - }, - "host_response_rate": { - "type": "number" - }, - "host_name": { - "type": "string" - }, - "host_identity_verified": { - "type": "boolean" - } - } - }, - "property_type": { - "type": "string" - }, - "summary": { - "type": "string" - }, - "monthly_price": { - "type": "number" - }, - "security_deposit": { - "type": "number" - }, - "images": { - "type": "object", - "properties": { - "picture_url": { - "type": "string" - }, - "xl_picture_url": { - "type": "string" - }, - "medium_url": { - "type": "string" - }, - "thumbnail_url": { - "type": "string" - } - } - }, - "address": { - "type": "object", - "properties": { - "market": { - "type": "string" - }, - "country_code": { - "type": "string" - }, - "country": { - "type": "string" - }, - "street": { - "type": "string" - }, - "suburb": { - "type": "string" - }, - "location": { - "type": "object", - "properties": { - "coordinates": { - "type": "array" - }, - "type": { - "type": "string" - }, - "is_location_exact": { - "type": "boolean" - } - } - }, - "government_area": { - "type": "string" - } - } - }, - "weekly_price": { - "type": "number" - }, - "bed_type": { - "type": "string" - }, - "listing_url": { - "type": "string" - }, - "guests_included": { - "type": "number" - }, - "maximum_nights": { - "type": "string" - }, - "bathrooms": { - "type": "number" - }, - "extra_people": { - "type": "number" - }, - "bedrooms": { - "type": "number" - }, - "minimum_nights": { - "type": "string" - }, - "last_review": { - "type": "string" - }, - "transit": { - "type": "string" - }, - "accommodates": { - "type": "number" - }, - "interaction": { - "type": "string" - }, - "name": { - "type": "string" - }, - "cancellation_policy": { - "type": "string" - }, - "beds": { - "type": "number" - }, - "last_scraped": { - "type": "string" - }, - "room_type": { - "type": "string" - } + "streams": [ + { + "stream": { + "name": "listingsAndReviews", + "json_schema": { + "type": "object", + "properties": { + "amenities": { + "type": "array" + }, + "notes": { + "type": "string" + }, + "access": { + "type": "string" + }, + "house_rules": { + "type": "string" + }, + "first_review": { + "type": "string" + }, + "calendar_last_scraped": { + "type": "string" + }, + "description": { + "type": "string" + }, + "neighborhood_overview": { + "type": "string" + }, + "_id_aibyte_transform": { + "type": "string" + }, + "availability": { + "type": "object", + "properties": { + "availability_365": { + "type": "number" + }, + "availability_30": { + "type": "number" + }, + "availability_60": { + "type": "number" + }, + "availability_90": { + "type": "number" + } + } + }, + "number_of_reviews": { + "type": "number" + }, + "space": { + "type": "string" + }, + "review_scores": { + "type": "object", + "properties": { + "review_scores_checkin": { + "type": "number" + }, + "review_scores_communication": { + "type": "number" + }, + "review_scores_rating": { + "type": "number" + }, + "review_scores_accuracy": { + "type": "number" + }, + "review_scores_location": { + "type": "number" + }, + "review_scores_value": { + "type": "number" + }, + "review_scores_cleanliness": { + "type": "number" + } + } + }, + "cleaning_fee": { + "type": "number" + }, + "reviews": { + "type": "array" + }, + "price": { + "type": "number" + }, + "reviews_per_month": { + "type": "number" + }, + "host": { + "type": "object", + "properties": { + "host_verifications": { + "type": "array" + }, + "host_url": { + "type": "string" + }, + "host_response_time": { + "type": "string" + }, + "host_has_profile_pic": { + "type": "boolean" + }, + "host_about": { + "type": "string" + }, + "host_picture_url": { + "type": "string" + }, + "host_id": { + "type": "string" + }, + "host_listings_count": { + "type": "number" + }, + "host_total_listings_count": { + "type": "number" + }, + "host_location": { + "type": "string" + }, + "host_is_superhost": { + "type": "boolean" + }, + "host_neighbourhood": { + "type": "string" + }, + "host_thumbnail_url": { + "type": "string" + }, + "host_response_rate": { + "type": "number" + }, + "host_name": { + "type": "string" + }, + "host_identity_verified": { + "type": "boolean" + } + } + }, + "property_type": { + "type": "string" + }, + "summary": { + "type": "string" + }, + "monthly_price": { + "type": "number" + }, + "security_deposit": { + "type": "number" + }, + "images": { + "type": "object", + "properties": { + "picture_url": { + "type": "string" + }, + "xl_picture_url": { + "type": "string" + }, + "medium_url": { + "type": "string" + }, + "thumbnail_url": { + "type": "string" + } + } + }, + "address": { + "type": "object", + "properties": { + "market": { + "type": "string" + }, + "country_code": { + "type": "string" + }, + "country": { + "type": "string" + }, + "street": { + "type": "string" + }, + "suburb": { + "type": "string" + }, + "location": { + "type": "object", + "properties": { + "coordinates": { + "type": "array" + }, + "type": { + "type": "string" + }, + "is_location_exact": { + "type": "boolean" } + } }, - "supported_sync_modes": [ - "full_refresh", - "incremental" - ], - "default_cursor_field": [], - "source_defined_primary_key": [], - "namespace": "sample_airbnb" - }, - "sync_mode": "full_refresh", - "destination_sync_mode": "overwrite" - } - ] + "government_area": { + "type": "string" + } + } + }, + "weekly_price": { + "type": "number" + }, + "bed_type": { + "type": "string" + }, + "listing_url": { + "type": "string" + }, + "guests_included": { + "type": "number" + }, + "maximum_nights": { + "type": "string" + }, + "bathrooms": { + "type": "number" + }, + "extra_people": { + "type": "number" + }, + "bedrooms": { + "type": "number" + }, + "minimum_nights": { + "type": "string" + }, + "last_review": { + "type": "string" + }, + "transit": { + "type": "string" + }, + "accommodates": { + "type": "number" + }, + "interaction": { + "type": "string" + }, + "name": { + "type": "string" + }, + "cancellation_policy": { + "type": "string" + }, + "beds": { + "type": "number" + }, + "last_scraped": { + "type": "string" + }, + "room_type": { + "type": "string" + } + } + }, + "supported_sync_modes": ["full_refresh", "incremental"], + "default_cursor_field": [], + "source_defined_primary_key": [], + "namespace": "sample_airbnb" + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + } + ] } diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceAbstractAcceptanceTest.java b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceAbstractAcceptanceTest.java index d6fa94306d82..fd1a018e048a 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceAbstractAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceAbstractAcceptanceTest.java @@ -10,13 +10,13 @@ import io.airbyte.commons.resources.MoreResources; import io.airbyte.db.mongodb.MongoDatabase; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceAtlasAcceptanceTest.java b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceAtlasAcceptanceTest.java index 6871ef86cc50..8fa0a447742c 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceAtlasAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceAtlasAcceptanceTest.java @@ -17,12 +17,12 @@ import io.airbyte.db.mongodb.MongoDatabase; import io.airbyte.integrations.source.mongodb.MongoDbSource; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.CatalogHelpers; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.nio.file.Files; import java.nio.file.Path; import java.util.List; diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceDataTypeTest.java b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceDataTypeTest.java index 2e7ebb1e56e1..aa580ecaae14 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceDataTypeTest.java +++ b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceDataTypeTest.java @@ -17,6 +17,8 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.db.mongodb.MongoDatabase; import io.airbyte.integrations.source.mongodb.MongoDbSource; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteMessage.Type; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; @@ -24,8 +26,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.time.LocalDate; import java.time.ZoneId; diff --git a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceStandaloneAcceptanceTest.java b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceStandaloneAcceptanceTest.java index 8741a5c70dfa..389b8fb15892 100644 --- a/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceStandaloneAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mongodb-v2/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MongoDbSourceStandaloneAcceptanceTest.java @@ -16,12 +16,12 @@ import io.airbyte.db.mongodb.MongoDatabase; import io.airbyte.integrations.source.mongodb.MongoDbSource; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.CatalogHelpers; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.util.List; import org.bson.BsonArray; import org.bson.BsonString; diff --git a/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mssql/MssqlStrictEncryptSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mssql/MssqlStrictEncryptSourceAcceptanceTest.java index f038e813dda0..93d1066dbe88 100644 --- a/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mssql/MssqlStrictEncryptSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mssql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mssql/MssqlStrictEncryptSourceAcceptanceTest.java @@ -16,11 +16,11 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.sql.SQLException; import java.util.HashMap; import org.apache.commons.lang3.RandomStringUtils; diff --git a/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlSource.java b/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlSource.java index 003249d0caf6..5276609b904f 100644 --- a/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlSource.java +++ b/airbyte-integrations/connectors/source-mssql/src/main/java/io/airbyte/integrations/source/mssql/MssqlSource.java @@ -34,10 +34,10 @@ import io.airbyte.integrations.source.mssql.MssqlCdcHelper.SnapshotIsolation; import io.airbyte.integrations.source.relationaldb.TableInfo; import io.airbyte.integrations.source.relationaldb.state.StateManager; +import io.airbyte.protocol.models.CommonField; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteStream; -import io.airbyte.protocol.models.CommonField; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.SyncMode; import java.io.File; diff --git a/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/AbstractSshMssqlSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/AbstractSshMssqlSourceAcceptanceTest.java index 8b565e70790e..286edbcf3425 100644 --- a/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/AbstractSshMssqlSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/AbstractSshMssqlSourceAcceptanceTest.java @@ -17,13 +17,13 @@ import io.airbyte.integrations.base.ssh.SshTunnel; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.Objects; diff --git a/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceAcceptanceTest.java index 0f4de2a8399b..579b00963cf5 100644 --- a/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/CdcMssqlSourceAcceptanceTest.java @@ -14,13 +14,13 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import java.util.Map; diff --git a/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/MssqlSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/MssqlSourceAcceptanceTest.java index c8aea4c1601e..1b417ef9b261 100644 --- a/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/MssqlSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mssql/src/test-integration/java/io/airbyte/integrations/source/mssql/MssqlSourceAcceptanceTest.java @@ -16,11 +16,11 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.sql.SQLException; import java.util.HashMap; import org.jooq.DSLContext; diff --git a/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/MssqlSourceTest.java b/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/MssqlSourceTest.java index ad1281625c9f..88552a47d4c5 100644 --- a/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/MssqlSourceTest.java +++ b/airbyte-integrations/connectors/source-mssql/src/test/java/io/airbyte/integrations/source/mssql/MssqlSourceTest.java @@ -16,10 +16,10 @@ import io.airbyte.db.factory.DSLContextFactory; import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.JdbcUtils; -import io.airbyte.protocol.models.v0.AirbyteCatalog; -import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.Field; import io.airbyte.protocol.models.JsonSchemaType; +import io.airbyte.protocol.models.v0.AirbyteCatalog; +import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.SyncMode; import java.sql.SQLException; import java.util.List; diff --git a/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSourceAcceptanceTest.java index 2d789d56e491..23f7baa1b188 100644 --- a/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptSourceAcceptanceTest.java @@ -18,13 +18,13 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import org.jooq.DSLContext; diff --git a/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptJdbcSourceAcceptanceTest.java index ee71c9127184..bd4130cf7248 100644 --- a/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mysql-strict-encrypt/src/test/java/io/airbyte/integrations/source/mysql_strict_encrypt/MySqlStrictEncryptJdbcSourceAcceptanceTest.java @@ -28,6 +28,8 @@ import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; import io.airbyte.integrations.source.mysql.MySqlSource; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; @@ -35,8 +37,6 @@ import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.sql.Connection; import java.sql.DriverManager; diff --git a/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlSource.java b/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlSource.java index d6008e376767..daea58f687f4 100644 --- a/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlSource.java +++ b/airbyte-integrations/connectors/source-mysql/src/main/java/io/airbyte/integrations/source/mysql/MySqlSource.java @@ -35,6 +35,7 @@ import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.state.StateManager; import io.airbyte.integrations.util.HostPortResolver; +import io.airbyte.protocol.models.CommonField; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteGlobalState; import io.airbyte.protocol.models.v0.AirbyteMessage; @@ -42,7 +43,6 @@ import io.airbyte.protocol.models.v0.AirbyteStateMessage.AirbyteStateType; import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.AirbyteStreamState; -import io.airbyte.protocol.models.CommonField; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.SyncMode; diff --git a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshMySqlSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshMySqlSourceAcceptanceTest.java index ba3a395feeb5..1d9d99cd420f 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshMySqlSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshMySqlSourceAcceptanceTest.java @@ -12,13 +12,13 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.nio.file.Path; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcBinlogsMySqlSourceDatatypeTest.java b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcBinlogsMySqlSourceDatatypeTest.java index 9533057670ef..022afe4b55e1 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcBinlogsMySqlSourceDatatypeTest.java +++ b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcBinlogsMySqlSourceDatatypeTest.java @@ -15,11 +15,11 @@ import io.airbyte.db.jdbc.JdbcUtils; import io.airbyte.integrations.standardtest.source.TestDataHolder; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.JsonSchemaType; import java.util.List; import org.jooq.DSLContext; import org.jooq.SQLDialect; diff --git a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSourceAcceptanceTest.java index 6fc436a59442..b1c0479230a4 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSourceAcceptanceTest.java @@ -23,6 +23,8 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; @@ -31,8 +33,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import java.util.stream.Collectors; @@ -106,10 +106,10 @@ protected ConfiguredAirbyteCatalog getConfiguredCatalogWithPartialColumns() { .withSyncMode(INCREMENTAL) .withDestinationSyncMode(DestinationSyncMode.APPEND) .withStream(CatalogHelpers.createAirbyteStream( - String.format("%s", STREAM_NAME), - String.format("%s", config.get(JdbcUtils.DATABASE_KEY).asText()), - Field.of("id", JsonSchemaType.NUMBER) - /* no name field */) + String.format("%s", STREAM_NAME), + String.format("%s", config.get(JdbcUtils.DATABASE_KEY).asText()), + Field.of("id", JsonSchemaType.NUMBER) + /* no name field */) .withSourceDefinedCursor(true) .withSourceDefinedPrimaryKey(List.of(List.of("id"))) .withSupportedSyncModes( @@ -118,15 +118,16 @@ protected ConfiguredAirbyteCatalog getConfiguredCatalogWithPartialColumns() { .withSyncMode(INCREMENTAL) .withDestinationSyncMode(DestinationSyncMode.APPEND) .withStream(CatalogHelpers.createAirbyteStream( - String.format("%s", STREAM_NAME2), - String.format("%s", config.get(JdbcUtils.DATABASE_KEY).asText()), - /* no id field */ - Field.of("name", JsonSchemaType.STRING)) + String.format("%s", STREAM_NAME2), + String.format("%s", config.get(JdbcUtils.DATABASE_KEY).asText()), + /* no id field */ + Field.of("name", JsonSchemaType.STRING)) .withSourceDefinedCursor(true) .withSourceDefinedPrimaryKey(List.of(List.of("id"))) .withSupportedSyncModes( Lists.newArrayList(SyncMode.FULL_REFRESH, INCREMENTAL))))); } + @Override protected JsonNode getState() { return null; @@ -246,8 +247,10 @@ private void verifyFieldNotExist(final List records, final assertTrue(records.stream() .filter(r -> { return r.getStream().equals(stream) - && r.getData().get(field) != null;}) + && r.getData().get(field) != null; + }) .collect(Collectors.toList()) .isEmpty(), "Records contain unselected columns [%s:%s]".formatted(stream, field)); } + } diff --git a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSslCaCertificateSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSslCaCertificateSourceAcceptanceTest.java index 5167df467b7e..f97b06503877 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSslCaCertificateSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSslCaCertificateSourceAcceptanceTest.java @@ -22,6 +22,8 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; @@ -30,8 +32,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import java.util.stream.Collectors; diff --git a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSslRequiredSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSslRequiredSourceAcceptanceTest.java index 2f2089e91239..2e5b525ffe76 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSslRequiredSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcMySqlSslRequiredSourceAcceptanceTest.java @@ -21,6 +21,8 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; @@ -29,8 +31,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.List; import java.util.stream.Collectors; diff --git a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MySqlSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MySqlSourceAcceptanceTest.java index b5226af4471b..86272df26b64 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MySqlSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mysql/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/MySqlSourceAcceptanceTest.java @@ -4,7 +4,6 @@ package io.airbyte.integrations.io.airbyte.integration_tests.sources; - import com.fasterxml.jackson.databind.JsonNode; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; @@ -17,13 +16,13 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import org.jooq.DSLContext; diff --git a/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/MySqlJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/MySqlJdbcSourceAcceptanceTest.java index c5c0d2db7b7a..2ecda456f1f4 100644 --- a/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/MySqlJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-mysql/src/test/java/io/airbyte/integrations/source/mysql/MySqlJdbcSourceAcceptanceTest.java @@ -22,6 +22,8 @@ import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteMessage; @@ -29,8 +31,6 @@ import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.sql.Connection; import java.sql.DriverManager; diff --git a/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptJdbcSourceAcceptanceTest.java index 2b559f396c4f..afdcdfc3dd00 100644 --- a/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptJdbcSourceAcceptanceTest.java @@ -23,6 +23,8 @@ import io.airbyte.integrations.source.oracle.OracleSource; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; @@ -31,8 +33,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.sql.Connection; diff --git a/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSourceAcceptanceTest.java index ac79b72f038c..97a6f9a73399 100644 --- a/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-oracle-strict-encrypt/src/test-integration/java/io/airbyte/integrations/source/oracle_strict_encrypt/OracleStrictEncryptSourceAcceptanceTest.java @@ -17,12 +17,12 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/AbstractSshOracleSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/AbstractSshOracleSourceAcceptanceTest.java index 1e2c5163c8fc..76a19a6cc90d 100644 --- a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/AbstractSshOracleSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/AbstractSshOracleSourceAcceptanceTest.java @@ -17,12 +17,12 @@ import io.airbyte.integrations.base.ssh.SshTunnel; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleJdbcSourceAcceptanceTest.java index 6172c5539d9b..70c6f0d407c7 100644 --- a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleJdbcSourceAcceptanceTest.java @@ -22,6 +22,8 @@ import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteMessage; @@ -33,8 +35,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.sql.Connection; diff --git a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceAcceptanceTest.java index 9a4427f68a6f..502a1fb8ce3c 100644 --- a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceAcceptanceTest.java @@ -15,12 +15,12 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceTest.java b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceTest.java index d23e25537ddc..7b37ebb88184 100644 --- a/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceTest.java +++ b/airbyte-integrations/connectors/source-oracle/src/test-integration/java/io/airbyte/integrations/source/oracle/OracleSourceTest.java @@ -16,14 +16,14 @@ import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.DefaultJdbcDatabase; import io.airbyte.db.jdbc.JdbcDatabase; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteMessage.Type; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.nio.charset.StandardCharsets; diff --git a/airbyte-integrations/connectors/source-pexels-api/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-pexels-api/integration_tests/invalid_config.json index 7720051d1530..44b9d71ed68e 100644 --- a/airbyte-integrations/connectors/source-pexels-api/integration_tests/invalid_config.json +++ b/airbyte-integrations/connectors/source-pexels-api/integration_tests/invalid_config.json @@ -1,6 +1,6 @@ { "api_key": "", - "query":"", + "query": "", "orientation": "", "size": "", "color": "", diff --git a/airbyte-integrations/connectors/source-pexels-api/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-pexels-api/integration_tests/sample_config.json index 4b2231751997..5b2b386c3489 100644 --- a/airbyte-integrations/connectors/source-pexels-api/integration_tests/sample_config.json +++ b/airbyte-integrations/connectors/source-pexels-api/integration_tests/sample_config.json @@ -1,6 +1,6 @@ { "api_key": "", - "query":"", + "query": "", "orientation": "", "size": "", "color": "", diff --git a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/pexels_api.yaml b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/pexels_api.yaml index 0f561d6caa28..2babee6e6063 100644 --- a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/pexels_api.yaml +++ b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/pexels_api.yaml @@ -4,40 +4,40 @@ definitions: selector: extractor: field_pointer: [] - + requester_stream: request_parameters: - query: | - {{ - config['query'] - if options['name'] == 'photos_search' or options['name'] == 'videos_search' - else '' - }} - orientation: | - {{ - config['orientation'] - if options['name'] == 'photos_search' or options['name'] == 'videos_search' - else '' - }} - size: | - {{ - config['size'] - if options['name'] == 'photos_search' or options['name'] == 'videos_search' - else '' - }} - locale: | - {{ - config['locale'] - if options['name'] == 'photos_search' or options['name'] == 'videos_search' - else '' - }} - color: | - {{ - config['color'] - if options['name'] == 'photos_search' - else '' - }} - + query: | + {{ + config['query'] + if options['name'] == 'photos_search' or options['name'] == 'videos_search' + else '' + }} + orientation: | + {{ + config['orientation'] + if options['name'] == 'photos_search' or options['name'] == 'videos_search' + else '' + }} + size: | + {{ + config['size'] + if options['name'] == 'photos_search' or options['name'] == 'videos_search' + else '' + }} + locale: | + {{ + config['locale'] + if options['name'] == 'photos_search' or options['name'] == 'videos_search' + else '' + }} + color: | + {{ + config['color'] + if options['name'] == 'photos_search' + else '' + }} + requester: url_base: "https://api.pexels.com" http_method: "GET" diff --git a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/collection_featured.json b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/collection_featured.json index c3d248b7e5de..61cd2f5d8af2 100644 --- a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/collection_featured.json +++ b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/collection_featured.json @@ -32,7 +32,7 @@ "description": { "$id": "#root/collections/items/description", "title": "Description", - "type": ["string","null"], + "type": ["string", "null"], "default": null }, "private": { diff --git a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/photos_search.json b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/photos_search.json index efddf1358285..42c24e75db39 100644 --- a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/photos_search.json +++ b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/photos_search.json @@ -1,177 +1,175 @@ { - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667402697.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "per_page": { - "$id": "#root/per_page", - "title": "Per_page", - "type": "integer", - "default": 0 - }, - "photos": { - "$id": "#root/photos", - "title": "Photos", - "type": "array", - "default": [], - "items":{ - "$id": "#root/photos/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/photos/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "width": { - "$id": "#root/photos/items/width", - "title": "Width", - "type": "integer", - "default": 0 - }, - "height": { - "$id": "#root/photos/items/height", - "title": "Height", - "type": "integer", - "default": 0 - }, - "url": { - "$id": "#root/photos/items/url", - "title": "Url", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "photographer": { - "$id": "#root/photos/items/photographer", - "title": "Photographer", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "photographer_url": { - "$id": "#root/photos/items/photographer_url", - "title": "Photographer_url", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "photographer_id": { - "$id": "#root/photos/items/photographer_id", - "title": "Photographer_id", - "type": "integer", - "default": 0 - }, - "avg_color": { - "$id": "#root/photos/items/avg_color", - "title": "Avg_color", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "src": { - "$id": "#root/photos/items/src", - "title": "Src", - "type": "object", - "properties": { - "original": { - "$id": "#root/photos/items/src/original", - "title": "Original", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "large2x": { - "$id": "#root/photos/items/src/large2x", - "title": "Large2x", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "large": { - "$id": "#root/photos/items/src/large", - "title": "Large", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "medium": { - "$id": "#root/photos/items/src/medium", - "title": "Medium", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "small": { - "$id": "#root/photos/items/src/small", - "title": "Small", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "portrait": { - "$id": "#root/photos/items/src/portrait", - "title": "Portrait", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "landscape": { - "$id": "#root/photos/items/src/landscape", - "title": "Landscape", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "tiny": { - "$id": "#root/photos/items/src/tiny", - "title": "Tiny", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } -, - "liked": { - "$id": "#root/photos/items/liked", - "title": "Liked", - "type": "boolean", - "default": true - }, - "alt": { - "$id": "#root/photos/items/alt", - "title": "Alt", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "next_page": { - "$id": "#root/next_page", - "title": "Next_page", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://example.com/object1667402697.json", + "title": "Root", + "type": "object", + "properties": { + "page": { + "$id": "#root/page", + "title": "Page", + "type": "integer", + "default": 0 + }, + "per_page": { + "$id": "#root/per_page", + "title": "Per_page", + "type": "integer", + "default": 0 + }, + "photos": { + "$id": "#root/photos", + "title": "Photos", + "type": "array", + "default": [], + "items": { + "$id": "#root/photos/items", + "title": "Items", + "type": "object", + "properties": { + "id": { + "$id": "#root/photos/items/id", + "title": "Id", + "type": "integer", + "default": 0 + }, + "width": { + "$id": "#root/photos/items/width", + "title": "Width", + "type": "integer", + "default": 0 + }, + "height": { + "$id": "#root/photos/items/height", + "title": "Height", + "type": "integer", + "default": 0 + }, + "url": { + "$id": "#root/photos/items/url", + "title": "Url", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "photographer": { + "$id": "#root/photos/items/photographer", + "title": "Photographer", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "photographer_url": { + "$id": "#root/photos/items/photographer_url", + "title": "Photographer_url", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "photographer_id": { + "$id": "#root/photos/items/photographer_id", + "title": "Photographer_id", + "type": "integer", + "default": 0 + }, + "avg_color": { + "$id": "#root/photos/items/avg_color", + "title": "Avg_color", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "src": { + "$id": "#root/photos/items/src", + "title": "Src", + "type": "object", + "properties": { + "original": { + "$id": "#root/photos/items/src/original", + "title": "Original", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "large2x": { + "$id": "#root/photos/items/src/large2x", + "title": "Large2x", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "large": { + "$id": "#root/photos/items/src/large", + "title": "Large", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "medium": { + "$id": "#root/photos/items/src/medium", + "title": "Medium", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "small": { + "$id": "#root/photos/items/src/small", + "title": "Small", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "portrait": { + "$id": "#root/photos/items/src/portrait", + "title": "Portrait", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "landscape": { + "$id": "#root/photos/items/src/landscape", + "title": "Landscape", + "type": "string", + "default": "", + "pattern": "^.*$" + }, + "tiny": { + "$id": "#root/photos/items/src/tiny", + "title": "Tiny", + "type": "string", + "default": "", + "pattern": "^.*$" + } + } + }, + "liked": { + "$id": "#root/photos/items/liked", + "title": "Liked", + "type": "boolean", + "default": true + }, + "alt": { + "$id": "#root/photos/items/alt", + "title": "Alt", + "type": "string", + "default": "", + "pattern": "^.*$" + } + } + } + }, + "total_results": { + "$id": "#root/total_results", + "title": "Total_results", + "type": "integer", + "default": 0 + }, + "next_page": { + "$id": "#root/next_page", + "title": "Next_page", + "type": "string", + "default": "", + "pattern": "^.*$" + } + } } diff --git a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/videos_search.json b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/videos_search.json index d4def3f2a10f..ce4a97b7cb11 100644 --- a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/videos_search.json +++ b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/schemas/videos_search.json @@ -176,7 +176,7 @@ "picture": { "$id": "#root/videos/items/video_pictures/items/picture", "title": "Picture", - "type": ["null","string"], + "type": ["null", "string"], "default": "", "pattern": "^.*$" }, diff --git a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/spec.yaml b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/spec.yaml index 870d38229954..a42c443bb285 100644 --- a/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/spec.yaml +++ b/airbyte-integrations/connectors/source-pexels-api/source_pexels_api/spec.yaml @@ -18,7 +18,7 @@ connectionSpecification: type: string description: Optional, the search query, Example Ocean, Tigers, Pears, etc. examples: - - people + - people - oceans orientation: title: Specific orientation for the search @@ -32,7 +32,7 @@ connectionSpecification: type: string description: Optional, Minimum photo size. The current supported sizes are large(24MP), medium(12MP) or small(4MP). examples: - - large + - large - small color: title: Specific color for the search @@ -47,4 +47,4 @@ connectionSpecification: description: Optional, The locale of the search you are performing. The current supported locales are 'en-US' 'pt-BR' 'es-ES' 'ca-ES' 'de-DE' 'it-IT' 'fr-FR' 'sv-SE' 'id-ID' 'pl-PL' 'ja-JP' 'zh-TW' 'zh-CN' 'ko-KR' 'th-TH' 'nl-NL' 'hu-HU' 'vi-VN' 'cs-CZ' 'da-DK' 'fi-FI' 'uk-UA' 'el-GR' 'ro-RO' 'nb-NO' 'sk-SK' 'tr-TR' 'ru-RU'. examples: - en-US - - pt-BR \ No newline at end of file + - pt-BR diff --git a/airbyte-integrations/connectors/source-plausible/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-plausible/integration_tests/configured_catalog.json index 168e61d24003..a76292ddff72 100644 --- a/airbyte-integrations/connectors/source-plausible/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-plausible/integration_tests/configured_catalog.json @@ -10,4 +10,4 @@ "destination_sync_mode": "overwrite" } ] -} \ No newline at end of file +} diff --git a/airbyte-integrations/connectors/source-plausible/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-plausible/integration_tests/invalid_config.json index b54b65208817..59be7acf5bfb 100644 --- a/airbyte-integrations/connectors/source-plausible/integration_tests/invalid_config.json +++ b/airbyte-integrations/connectors/source-plausible/integration_tests/invalid_config.json @@ -2,4 +2,4 @@ "api_key": "", "site_id": "https://airbyte.com", "start_date": "20220101" -} \ No newline at end of file +} diff --git a/airbyte-integrations/connectors/source-plausible/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-plausible/integration_tests/sample_config.json index 2e59a8bcd3cf..ca25d618708b 100644 --- a/airbyte-integrations/connectors/source-plausible/integration_tests/sample_config.json +++ b/airbyte-integrations/connectors/source-plausible/integration_tests/sample_config.json @@ -2,4 +2,4 @@ "api_key": "your_api_key", "site_id": "airbyte.com", "start_date": "2022-01-01" -} \ No newline at end of file +} diff --git a/airbyte-integrations/connectors/source-plausible/source_plausible/plausible.yaml b/airbyte-integrations/connectors/source-plausible/source_plausible/plausible.yaml index 9562bf3f656f..77cb7c2694bc 100644 --- a/airbyte-integrations/connectors/source-plausible/source_plausible/plausible.yaml +++ b/airbyte-integrations/connectors/source-plausible/source_plausible/plausible.yaml @@ -3,7 +3,7 @@ version: "0.1.0" definitions: selector: extractor: - field_pointer: [ "results" ] + field_pointer: ["results"] record_filter: condition: "{{ record['bounce_rate'] is not none }}" requester: @@ -45,4 +45,4 @@ streams: check: stream_names: - - "stats" \ No newline at end of file + - "stats" diff --git a/airbyte-integrations/connectors/source-plausible/source_plausible/schemas/stats.json b/airbyte-integrations/connectors/source-plausible/source_plausible/schemas/stats.json index dedba0ebe26b..08537a0850f1 100644 --- a/airbyte-integrations/connectors/source-plausible/source_plausible/schemas/stats.json +++ b/airbyte-integrations/connectors/source-plausible/source_plausible/schemas/stats.json @@ -34,4 +34,4 @@ "description": "The number of visits/sessions." } } -} \ No newline at end of file +} diff --git a/airbyte-integrations/connectors/source-plausible/source_plausible/spec.yaml b/airbyte-integrations/connectors/source-plausible/source_plausible/spec.yaml index f2044a651727..f8fe51c72b87 100644 --- a/airbyte-integrations/connectors/source-plausible/source_plausible/spec.yaml +++ b/airbyte-integrations/connectors/source-plausible/source_plausible/spec.yaml @@ -36,4 +36,4 @@ connectionSpecification: Start date for data to retrieve, in ISO-8601 format. pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}$ examples: - - YYYY-MM-DD \ No newline at end of file + - YYYY-MM-DD diff --git a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSource.java b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSource.java index e6af317c1273..0b6fa5282821 100644 --- a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSource.java +++ b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSource.java @@ -42,6 +42,7 @@ import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.state.StateManager; import io.airbyte.integrations.util.HostPortResolver; +import io.airbyte.protocol.models.CommonField; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; @@ -52,7 +53,6 @@ import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import io.airbyte.protocol.models.v0.AirbyteStreamState; -import io.airbyte.protocol.models.CommonField; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import java.net.URI; @@ -517,7 +517,8 @@ protected static String toSslJdbcParamInternal(final SslMode sslMode) { } @Override - protected boolean verifyCursorColumnValues(final JdbcDatabase database, final String schema, final String tableName, final String columnName) throws SQLException { + protected boolean verifyCursorColumnValues(final JdbcDatabase database, final String schema, final String tableName, final String columnName) + throws SQLException { final String query; final String resultColName = "nullValue"; // Query: Only if cursor column allows null values, query whether it contains one @@ -536,4 +537,5 @@ protected boolean verifyCursorColumnValues(final JdbcDatabase database, final St LOGGER.debug("null value exist: {}", nullValExist); return !nullValExist; } + } diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractPostgresSourceSSLCertificateAcceptanceTest.java b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractPostgresSourceSSLCertificateAcceptanceTest.java index 0ce3877011cd..a2f943da4818 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractPostgresSourceSSLCertificateAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractPostgresSourceSSLCertificateAcceptanceTest.java @@ -18,13 +18,13 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshPostgresSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshPostgresSourceAcceptanceTest.java index 8dce1c38f761..5d66ca8d75b8 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshPostgresSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/AbstractSshPostgresSourceAcceptanceTest.java @@ -18,13 +18,13 @@ import io.airbyte.integrations.base.ssh.SshTunnel; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcPostgresSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcPostgresSourceAcceptanceTest.java index 2c0b214f7449..1e1fd00ae3d4 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcPostgresSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcPostgresSourceAcceptanceTest.java @@ -19,6 +19,8 @@ import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; import io.airbyte.integrations.util.HostPortResolver; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; @@ -26,8 +28,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; @@ -182,20 +182,20 @@ protected ConfiguredAirbyteCatalog getConfiguredCatalogWithPartialColumns() { .withCursorField(Lists.newArrayList("id")) .withDestinationSyncMode(DestinationSyncMode.APPEND) .withStream(CatalogHelpers.createAirbyteStream( - STREAM_NAME, - NAMESPACE, - Field.of("id", JsonSchemaType.INTEGER) - /*no name field */) + STREAM_NAME, + NAMESPACE, + Field.of("id", JsonSchemaType.INTEGER) + /* no name field */) .withSupportedSyncModes(Lists.newArrayList(SyncMode.FULL_REFRESH, SyncMode.INCREMENTAL))), new ConfiguredAirbyteStream() .withSyncMode(SyncMode.INCREMENTAL) .withCursorField(Lists.newArrayList("name")) .withDestinationSyncMode(DestinationSyncMode.APPEND) .withStream(CatalogHelpers.createAirbyteStream( - STREAM_NAME2, - NAMESPACE, - /* no id field */ - Field.of("name", JsonSchemaType.STRING)) + STREAM_NAME2, + NAMESPACE, + /* no id field */ + Field.of("name", JsonSchemaType.STRING)) .withSupportedSyncModes(Lists.newArrayList(SyncMode.FULL_REFRESH, SyncMode.INCREMENTAL))))); } @@ -230,7 +230,8 @@ private void verifyFieldNotExist(final List records, final assertTrue(records.stream() .filter(r -> { return r.getStream().equals(stream) - && r.getData().get(field) != null;}) + && r.getData().get(field) != null; + }) .collect(Collectors.toList()) .isEmpty(), "Records contain unselected columns [%s:%s]".formatted(stream, field)); } diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcWalLogsPostgresSourceDatatypeTest.java b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcWalLogsPostgresSourceDatatypeTest.java index 9124e051f3c4..3f08c37b7323 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcWalLogsPostgresSourceDatatypeTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/CdcWalLogsPostgresSourceDatatypeTest.java @@ -14,11 +14,11 @@ import io.airbyte.integrations.standardtest.source.TestDataHolder; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; import io.airbyte.integrations.util.HostPortResolver; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.JsonSchemaType; import java.util.List; import java.util.Set; import org.jooq.SQLDialect; diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/PostgresSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/PostgresSourceAcceptanceTest.java index 9e3a24a81dd6..609a3b3779d4 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/PostgresSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/PostgresSourceAcceptanceTest.java @@ -20,6 +20,8 @@ import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; import io.airbyte.integrations.util.HostPortResolver; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; @@ -27,8 +29,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.sql.SQLException; import java.util.HashMap; @@ -44,6 +44,7 @@ @ExtendWith(SystemStubsExtension.class) public class PostgresSourceAcceptanceTest extends SourceAcceptanceTest { + private static final String STREAM_NAME = "id_and_name"; private static final String STREAM_NAME2 = "starships"; private static final String STREAM_NAME_MATERIALIZED_VIEW = "testview"; diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/PostgresSourceStrictEncryptAcceptanceTest.java b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/PostgresSourceStrictEncryptAcceptanceTest.java index 7fd66cb2608b..463651440229 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/PostgresSourceStrictEncryptAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/PostgresSourceStrictEncryptAcceptanceTest.java @@ -20,13 +20,13 @@ import io.airbyte.integrations.base.ssh.SshHelpers; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import java.util.List; @@ -117,7 +117,8 @@ protected String getImageName() { @Override protected ConnectorSpecification getSpec() throws Exception { - return SshHelpers.injectSshIntoSpec(Jsons.deserialize(MoreResources.readResource("expected_strict_encrypt_spec.json"), ConnectorSpecification.class)); + return SshHelpers + .injectSshIntoSpec(Jsons.deserialize(MoreResources.readResource("expected_strict_encrypt_spec.json"), ConnectorSpecification.class)); } @Override diff --git a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/CdcPostgresSourceTest.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/CdcPostgresSourceTest.java index be63c145c1cc..fe1913013dac 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/CdcPostgresSourceTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/CdcPostgresSourceTest.java @@ -36,6 +36,8 @@ import io.airbyte.integrations.base.Source; import io.airbyte.integrations.debezium.CdcSourceTest; import io.airbyte.integrations.debezium.CdcTargetPosition; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteMessage; @@ -44,8 +46,6 @@ import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import io.airbyte.test.utils.PostgreSQLContainerHelper; import io.debezium.engine.ChangeEvent; diff --git a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresJdbcSourceAcceptanceTest.java index f01542257864..9ed13ab719c7 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresJdbcSourceAcceptanceTest.java @@ -24,6 +24,8 @@ import io.airbyte.integrations.source.jdbc.AbstractJdbcSource; import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteMessage; @@ -31,8 +33,6 @@ import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.sql.SQLException; diff --git a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceSSLTest.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceSSLTest.java index 8291e14fbc58..1efeed752c65 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceSSLTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceSSLTest.java @@ -24,14 +24,14 @@ import io.airbyte.db.factory.DSLContextFactory; import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.JdbcUtils; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.math.BigDecimal; diff --git a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceTest.java b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceTest.java index 5980203c07af..386605786c37 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceTest.java +++ b/airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSourceTest.java @@ -27,6 +27,8 @@ import io.airbyte.db.factory.DSLContextFactory; import io.airbyte.db.factory.DatabaseDriver; import io.airbyte.db.jdbc.JdbcUtils; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteStream; @@ -34,8 +36,6 @@ import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import io.airbyte.test.utils.PostgreSQLContainerHelper; import java.math.BigDecimal; @@ -579,9 +579,9 @@ private ConfiguredAirbyteStream createTableWithNullValueCursor(final Database da .withDestinationSyncMode(DestinationSyncMode.APPEND) .withSyncMode(SyncMode.INCREMENTAL) .withStream(CatalogHelpers.createAirbyteStream( - "test_table_null_cursor", - "public", - Field.of("id", JsonSchemaType.STRING)) + "test_table_null_cursor", + "public", + Field.of("id", JsonSchemaType.STRING)) .withSupportedSyncModes(Lists.newArrayList(SyncMode.FULL_REFRESH, SyncMode.INCREMENTAL)) .withSourceDefinedPrimaryKey(List.of(List.of("id")))); @@ -613,10 +613,10 @@ private ConfiguredAirbyteStream createViewWithNullValueCursor(final Database dat database.query(ctx -> { ctx.fetch("CREATE TABLE IF NOT EXISTS public.test_table_null_cursor(id INTEGER NULL)"); ctx.fetch(""" - CREATE VIEW test_view_null_cursor(id) as - SELECT test_table_null_cursor.id - FROM test_table_null_cursor - """); + CREATE VIEW test_view_null_cursor(id) as + SELECT test_table_null_cursor.id + FROM test_table_null_cursor + """); ctx.fetch("INSERT INTO public.test_table_null_cursor(id) VALUES (1), (2), (NULL)"); return null; }); @@ -626,9 +626,9 @@ CREATE VIEW test_view_null_cursor(id) as .withDestinationSyncMode(DestinationSyncMode.APPEND) .withSyncMode(SyncMode.INCREMENTAL) .withStream(CatalogHelpers.createAirbyteStream( - "test_view_null_cursor", - "public", - Field.of("id", JsonSchemaType.STRING)) + "test_view_null_cursor", + "public", + Field.of("id", JsonSchemaType.STRING)) .withSupportedSyncModes(Lists.newArrayList(SyncMode.FULL_REFRESH, SyncMode.INCREMENTAL)) .withSourceDefinedPrimaryKey(List.of(List.of("id")))); diff --git a/airbyte-integrations/connectors/source-posthog/Dockerfile b/airbyte-integrations/connectors/source-posthog/Dockerfile index 458971530cf4..70ad853d5bfc 100644 --- a/airbyte-integrations/connectors/source-posthog/Dockerfile +++ b/airbyte-integrations/connectors/source-posthog/Dockerfile @@ -12,5 +12,5 @@ RUN pip install . ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.7 +LABEL io.airbyte.version=0.1.8 LABEL io.airbyte.name=airbyte/source-posthog diff --git a/airbyte-integrations/connectors/source-posthog/acceptance-test-config.yml b/airbyte-integrations/connectors/source-posthog/acceptance-test-config.yml index 75c8a8f49fc1..02d80ed9f095 100644 --- a/airbyte-integrations/connectors/source-posthog/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-posthog/acceptance-test-config.yml @@ -12,15 +12,13 @@ tests: basic_read: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: - - events_sessions - - insights_path - - insights_sessions - - trends incremental: - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" + configured_catalog_path: "integration_tests/configured_catalog_events_incremental.json" future_state_path: "integration_tests/future_state.json" + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog_events_incremental.json" + future_state_path: "integration_tests/future_state_old.json" full_refresh: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-posthog/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-posthog/integration_tests/configured_catalog.json index d992b1c21226..a69bfb190588 100644 --- a/airbyte-integrations/connectors/source-posthog/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-posthog/integration_tests/configured_catalog.json @@ -1,17 +1,26 @@ { "streams": [ + { + "stream": { + "name": "projects", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"], + "source_defined_primary_key": [["id"]], + "namespace": null + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append", + "primary_key": null + }, { "stream": { "name": "annotations", "json_schema": {}, - "supported_sync_modes": ["full_refresh", "incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updated_at"], + "supported_sync_modes": ["full_refresh"], "source_defined_primary_key": [["id"]], "namespace": null }, "sync_mode": "full_refresh", - "cursor_field": null, "destination_sync_mode": "append", "primary_key": null }, @@ -74,6 +83,21 @@ "cursor_field": null, "destination_sync_mode": "append", "primary_key": null + }, + { + "stream": { + "name": "insights", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"], + "source_defined_cursor": null, + "default_cursor_field": null, + "source_defined_primary_key": [["id"]], + "namespace": null + }, + "sync_mode": "full_refresh", + "cursor_field": null, + "destination_sync_mode": "append", + "primary_key": null } ] } diff --git a/airbyte-integrations/connectors/source-posthog/integration_tests/configured_catalog_events_incremental.json b/airbyte-integrations/connectors/source-posthog/integration_tests/configured_catalog_events_incremental.json new file mode 100644 index 000000000000..0de37241325a --- /dev/null +++ b/airbyte-integrations/connectors/source-posthog/integration_tests/configured_catalog_events_incremental.json @@ -0,0 +1,19 @@ +{ + "streams": [ + { + "stream": { + "name": "events", + "json_schema": {}, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["timestamp"], + "source_defined_primary_key": [["id"]], + "namespace": null + }, + "sync_mode": "incremental", + "destination_sync_mode": "append", + "cursor_field": ["timestamp"], + "primary_key": [["id"]] + } + ] +} diff --git a/airbyte-integrations/connectors/source-posthog/integration_tests/expected_records.json b/airbyte-integrations/connectors/source-posthog/integration_tests/expected_records.json new file mode 100644 index 000000000000..35011b145d20 --- /dev/null +++ b/airbyte-integrations/connectors/source-posthog/integration_tests/expected_records.json @@ -0,0 +1,659 @@ +{"stream":"projects","data":{"id":2331,"uuid":"0178cc4f-df47-0000-c607-ca58c009c7df","organization":"0178cc4f-de6a-0000-091b-f4791e6e02f7","api_token":"r4uy4lgjKEGSkSbUdyr3AydH1R7EYfEtg25A7B58-N0","name":"Default Project","completed_snippet_onboarding":true,"ingested_event":true,"is_demo":false,"timezone":"UTC","access_control":false,"effective_membership_level":15},"emitted_at":1668174290927} +{"stream":"annotations","data":{"id":2966,"content":"o9p6illw9vkwgpaylsga","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:33.222435Z","updated_at":"2021-06-02T10:56:33.222690Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292666} +{"stream":"annotations","data":{"id":2894,"content":"w720sp67u37b8uexb","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:51:58.384052Z","updated_at":"2021-06-02T10:51:58.384347Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292676} +{"stream":"annotations","data":{"id":2967,"content":"eyhpo287va8gy65lk","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:33.430827Z","updated_at":"2021-06-02T10:56:33.431162Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292676} +{"stream":"annotations","data":{"id":2862,"content":"hpff1is","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:23.427797Z","updated_at":"2021-05-27T14:09:23.428138Z","deleted":false,"scope":"organization"},"emitted_at":1668174292677} +{"stream":"annotations","data":{"id":2876,"content":"AAAAA","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:27.596041Z","updated_at":"2021-06-02T09:37:49.742232Z","deleted":false,"scope":"organization"},"emitted_at":1668174292677} +{"stream":"annotations","data":{"id":2895,"content":"gkvy7ho2pow1giv3u","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:14.273974Z","updated_at":"2021-06-02T10:56:14.274289Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292677} +{"stream":"annotations","data":{"id":2971,"content":"y4ydvr17kwhcdb1g","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:34.309730Z","updated_at":"2021-06-02T10:56:34.309969Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292677} +{"stream":"annotations","data":{"id":2863,"content":"jc592xq","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:23.624304Z","updated_at":"2021-05-27T14:09:23.624626Z","deleted":false,"scope":"organization"},"emitted_at":1668174292677} +{"stream":"annotations","data":{"id":2896,"content":"be9plngwqdj","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:14.862710Z","updated_at":"2021-06-02T10:56:14.862989Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292677} +{"stream":"annotations","data":{"id":2953,"content":"wvjlev54401j2rn656wy","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:30.261372Z","updated_at":"2021-06-02T10:56:30.261781Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292677} +{"stream":"annotations","data":{"id":2972,"content":"e5fx7kj6m9693vio9e0j","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:34.538782Z","updated_at":"2021-06-02T10:56:34.539035Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292677} +{"stream":"annotations","data":{"id":2985,"content":"xk9mrwqf662b4","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:37.453998Z","updated_at":"2021-06-02T10:56:37.454306Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292678} +{"stream":"annotations","data":{"id":2864,"content":"aqj6k7c","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:24.176057Z","updated_at":"2021-05-27T14:09:24.176397Z","deleted":false,"scope":"organization"},"emitted_at":1668174292678} +{"stream":"annotations","data":{"id":2897,"content":"ls8cdloe8ice3","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:15.043063Z","updated_at":"2021-06-02T10:56:15.043469Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292678} +{"stream":"annotations","data":{"id":2900,"content":"onmtla10hwf8","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:16.301578Z","updated_at":"2021-06-02T10:56:16.301901Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292678} +{"stream":"annotations","data":{"id":2936,"content":"x9ii5n9ottxjlrk","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:26.258367Z","updated_at":"2021-06-02T10:56:26.258710Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292678} +{"stream":"annotations","data":{"id":2973,"content":"3ttmqhjb5e1o","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:34.760636Z","updated_at":"2021-06-02T10:56:34.760922Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292678} +{"stream":"annotations","data":{"id":2983,"content":"yx3h8f61f0uw","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:36.997063Z","updated_at":"2021-06-02T10:56:36.997370Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292678} +{"stream":"annotations","data":{"id":2865,"content":"jv8i8g7","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:24.346934Z","updated_at":"2021-05-27T14:09:24.347332Z","deleted":false,"scope":"organization"},"emitted_at":1668174292679} +{"stream":"annotations","data":{"id":2898,"content":"3u93nm52pwk7y1c5","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:15.596910Z","updated_at":"2021-06-02T10:56:15.597149Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292679} +{"stream":"annotations","data":{"id":2974,"content":"w9a3tkoui6fkq","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:34.985961Z","updated_at":"2021-06-02T10:56:34.986208Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292679} +{"stream":"annotations","data":{"id":2988,"content":"8wdkf1hr3h","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:38.143221Z","updated_at":"2021-06-02T10:56:38.143544Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292679} +{"stream":"annotations","data":{"id":2866,"content":"yrti1l3","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:24.550655Z","updated_at":"2021-05-27T14:09:24.550944Z","deleted":false,"scope":"organization"},"emitted_at":1668174292679} +{"stream":"annotations","data":{"id":2899,"content":"gc3dnu1chyqqg189xo","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:16.126162Z","updated_at":"2021-06-02T10:56:16.126691Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292679} +{"stream":"annotations","data":{"id":2910,"content":"j7fmfhfgckqi155j","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:19.340175Z","updated_at":"2021-06-02T10:56:19.340465Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292679} +{"stream":"annotations","data":{"id":2975,"content":"9nwejkiy70xkgibpplia","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:35.215126Z","updated_at":"2021-06-02T10:56:35.215454Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292679} +{"stream":"annotations","data":{"id":2867,"content":"adp7rmd","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:25.111438Z","updated_at":"2021-05-27T14:09:25.111721Z","deleted":false,"scope":"organization"},"emitted_at":1668174292680} +{"stream":"annotations","data":{"id":2901,"content":"6f71p871wk","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:16.503998Z","updated_at":"2021-06-02T10:56:16.504277Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292680} +{"stream":"annotations","data":{"id":2956,"content":"u87lsqj56e","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:30.922918Z","updated_at":"2021-06-02T10:56:30.923280Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292680} +{"stream":"annotations","data":{"id":2957,"content":"85jl8uyx9sib","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:31.133171Z","updated_at":"2021-06-02T10:56:31.133440Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292680} +{"stream":"annotations","data":{"id":2976,"content":"loo37d0nqroggc","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:35.442491Z","updated_at":"2021-06-02T10:56:35.442760Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292680} +{"stream":"annotations","data":{"id":2868,"content":"9o9lj77","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:25.288823Z","updated_at":"2021-05-27T14:09:25.289127Z","deleted":false,"scope":"organization"},"emitted_at":1668174292680} +{"stream":"annotations","data":{"id":2902,"content":"c6690r8dx02ns","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:16.724509Z","updated_at":"2021-06-02T10:56:16.724754Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292680} +{"stream":"annotations","data":{"id":2923,"content":"b1tebqj6yjv2mwel46k","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:22.718696Z","updated_at":"2021-06-02T10:56:22.718928Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292681} +{"stream":"annotations","data":{"id":2942,"content":"op24itr0p0yh46q7cu0d","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:27.898869Z","updated_at":"2021-06-02T10:56:27.899125Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292681} +{"stream":"annotations","data":{"id":2977,"content":"nsk80d7594s4m3y3","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:35.671496Z","updated_at":"2021-06-02T10:56:35.671737Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292681} +{"stream":"annotations","data":{"id":2869,"content":"SORT_TEST_SYKA","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:25.503445Z","updated_at":"2021-05-27T14:13:25.653832Z","deleted":false,"scope":"organization"},"emitted_at":1668174292681} +{"stream":"annotations","data":{"id":2903,"content":"kxgqpyyk30di1njac","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:16.924151Z","updated_at":"2021-06-02T10:56:16.924730Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292681} +{"stream":"annotations","data":{"id":2921,"content":"rqeetpf6ylpmm","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:22.306595Z","updated_at":"2021-06-02T10:56:22.306914Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292681} +{"stream":"annotations","data":{"id":2928,"content":"pwpot5cmgij37rgxb","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:24.120231Z","updated_at":"2021-06-02T10:56:24.120459Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292681} +{"stream":"annotations","data":{"id":2945,"content":"qm0kkgwxu35goc","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:28.542137Z","updated_at":"2021-06-02T10:56:28.542359Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292682} +{"stream":"annotations","data":{"id":2955,"content":"t8qwpufs450f","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:30.717975Z","updated_at":"2021-06-02T10:56:30.718232Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292682} +{"stream":"annotations","data":{"id":2978,"content":"tj190govu3huo8yev94","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:35.870921Z","updated_at":"2021-06-02T10:56:35.871143Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292682} +{"stream":"annotations","data":{"id":2986,"content":"7ubwqp6ltbt9um8yp","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:37.682951Z","updated_at":"2021-06-02T10:56:37.683204Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292682} +{"stream":"annotations","data":{"id":2870,"content":"kvfrro6","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:25.702092Z","updated_at":"2021-05-27T14:09:25.702635Z","deleted":false,"scope":"organization"},"emitted_at":1668174292682} +{"stream":"annotations","data":{"id":2904,"content":"wr5ey74qax34c2u","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:17.480280Z","updated_at":"2021-06-02T10:56:17.480642Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292682} +{"stream":"annotations","data":{"id":2943,"content":"6ptucn86elsm2jmy1ukw","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:28.100808Z","updated_at":"2021-06-02T10:56:28.101195Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292682} +{"stream":"annotations","data":{"id":2944,"content":"sgef00vmbqhki4o","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:28.320150Z","updated_at":"2021-06-02T10:56:28.320421Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292682} +{"stream":"annotations","data":{"id":2979,"content":"1x9xkhdpyfwvunu","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:36.104647Z","updated_at":"2021-06-02T10:56:36.104923Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292683} +{"stream":"annotations","data":{"id":2871,"content":"u1p7jh1","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:25.917697Z","updated_at":"2021-05-27T14:09:25.918005Z","deleted":false,"scope":"organization"},"emitted_at":1668174292683} +{"stream":"annotations","data":{"id":2905,"content":"fhhnj88owqackqe9","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:17.653738Z","updated_at":"2021-06-02T10:56:17.654040Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292683} +{"stream":"annotations","data":{"id":2913,"content":"h1g9tyskrr7","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:20.318147Z","updated_at":"2021-06-02T10:56:20.318365Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292683} +{"stream":"annotations","data":{"id":2980,"content":"lavxrcp8weuydb","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:36.331552Z","updated_at":"2021-06-02T10:56:36.331866Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292683} +{"stream":"annotations","data":{"id":2872,"content":"n0kkb70","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:26.478311Z","updated_at":"2021-05-27T14:09:26.478560Z","deleted":false,"scope":"organization"},"emitted_at":1668174292683} +{"stream":"annotations","data":{"id":2906,"content":"qd28bm61wg24o0rrt2kl","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:18.220238Z","updated_at":"2021-06-02T10:56:18.220550Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292683} +{"stream":"annotations","data":{"id":2908,"content":"dfn275dc2vsg2il7","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:18.602706Z","updated_at":"2021-06-02T10:56:18.602983Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292684} +{"stream":"annotations","data":{"id":2909,"content":"d4q7sd84ovnshd","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:19.166722Z","updated_at":"2021-06-02T10:56:19.166954Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292684} +{"stream":"annotations","data":{"id":2938,"content":"be0rr7hi979j","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:26.715198Z","updated_at":"2021-06-02T10:56:26.715459Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292684} +{"stream":"annotations","data":{"id":2981,"content":"6ktqpwco39","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:36.549394Z","updated_at":"2021-06-02T10:56:36.549714Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292684} +{"stream":"annotations","data":{"id":2873,"content":"i9g3n6m","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:26.666069Z","updated_at":"2021-05-27T14:09:26.666359Z","deleted":false,"scope":"organization"},"emitted_at":1668174292684} +{"stream":"annotations","data":{"id":2883,"content":"m8a5fg3","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:29.711803Z","updated_at":"2021-05-27T14:09:29.712098Z","deleted":false,"scope":"organization"},"emitted_at":1668174292684} +{"stream":"annotations","data":{"id":2907,"content":"d51midlwk1bnnnt","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:18.402788Z","updated_at":"2021-06-02T10:56:18.403067Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292684} +{"stream":"annotations","data":{"id":2940,"content":"ksggjooxbk7lkgm","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:27.460979Z","updated_at":"2021-06-02T10:56:27.461217Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292685} +{"stream":"annotations","data":{"id":2970,"content":"majndc7fi3lpr","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:34.093294Z","updated_at":"2021-06-02T10:56:34.093592Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292685} +{"stream":"annotations","data":{"id":2982,"content":"7sj5mpp2gg","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:36.776626Z","updated_at":"2021-06-02T10:56:36.776961Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292685} +{"stream":"annotations","data":{"id":2874,"content":"90ra3pn","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:27.216287Z","updated_at":"2021-05-27T14:09:27.216596Z","deleted":false,"scope":"organization"},"emitted_at":1668174292685} +{"stream":"annotations","data":{"id":2911,"content":"ahmkqrlc110dixa0k","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:19.552093Z","updated_at":"2021-06-02T10:56:19.552388Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292685} +{"stream":"annotations","data":{"id":2984,"content":"i3doqjgh5gm4g3y","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:37.221467Z","updated_at":"2021-06-02T10:56:37.221700Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292685} +{"stream":"annotations","data":{"id":2875,"content":"kak8e7e","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:27.394222Z","updated_at":"2021-05-27T14:09:27.394457Z","deleted":false,"scope":"organization"},"emitted_at":1668174292685} +{"stream":"annotations","data":{"id":2878,"content":"vtf7dcl","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:28.364099Z","updated_at":"2021-05-27T14:09:28.364348Z","deleted":false,"scope":"organization"},"emitted_at":1668174292685} +{"stream":"annotations","data":{"id":2912,"content":"4quprwnchban55p7u3xw","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:19.754623Z","updated_at":"2021-06-02T10:56:19.754966Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292686} +{"stream":"annotations","data":{"id":2924,"content":"s9d6jebyee4adbkm4l","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:23.295787Z","updated_at":"2021-06-02T10:56:23.296048Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292686} +{"stream":"annotations","data":{"id":2987,"content":"4mmnickomvqmup8","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:37.918152Z","updated_at":"2021-06-02T10:56:37.918405Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292686} +{"stream":"annotations","data":{"id":2877,"content":"dea8r46","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:27.801930Z","updated_at":"2021-05-27T14:09:27.802178Z","deleted":false,"scope":"organization"},"emitted_at":1668174292686} +{"stream":"annotations","data":{"id":2914,"content":"t8mowyky1djvf9y8oag","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:20.504266Z","updated_at":"2021-06-02T10:56:20.504708Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292686} +{"stream":"annotations","data":{"id":2989,"content":"e0l6lev33kvr","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:38.356472Z","updated_at":"2021-06-02T10:56:38.356692Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292686} +{"stream":"annotations","data":{"id":2879,"content":"1txk18a","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:28.893374Z","updated_at":"2021-05-27T14:09:28.893619Z","deleted":false,"scope":"organization"},"emitted_at":1668174292686} +{"stream":"annotations","data":{"id":2915,"content":"s7djfvb2q5t50es","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:21.062962Z","updated_at":"2021-06-02T10:56:21.063215Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292687} +{"stream":"annotations","data":{"id":2969,"content":"nd7hyndfumj7jf5bd1n","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:33.872290Z","updated_at":"2021-06-02T10:56:33.872514Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292687} +{"stream":"annotations","data":{"id":2990,"content":"rvfhxwt680ltkrki","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:38.600817Z","updated_at":"2021-06-02T10:56:38.601122Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292687} +{"stream":"annotations","data":{"id":2880,"content":"k24w5a2","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:29.094382Z","updated_at":"2021-05-27T14:09:29.094905Z","deleted":false,"scope":"organization"},"emitted_at":1668174292687} +{"stream":"annotations","data":{"id":2916,"content":"ppqw3cv72qg4sbxknm7k","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:21.249132Z","updated_at":"2021-06-02T10:56:21.249473Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292687} +{"stream":"annotations","data":{"id":2991,"content":"6yotmvlsivnkm","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:38.814987Z","updated_at":"2021-06-02T10:56:38.815204Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292687} +{"stream":"annotations","data":{"id":2881,"content":"c4avcgi","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:29.294208Z","updated_at":"2021-05-27T14:09:29.294601Z","deleted":false,"scope":"organization"},"emitted_at":1668174292687} +{"stream":"annotations","data":{"id":2917,"content":"o1ox9fx1j0yp3620","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:21.453023Z","updated_at":"2021-06-02T10:56:21.453312Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292687} +{"stream":"annotations","data":{"id":2926,"content":"yiwohalrwgci3we","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:23.705460Z","updated_at":"2021-06-02T10:56:23.705771Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292688} +{"stream":"annotations","data":{"id":2948,"content":"ev8i1y0fkjy3uj4","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:29.184266Z","updated_at":"2021-06-02T10:56:29.184529Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292688} +{"stream":"annotations","data":{"id":2958,"content":"gpe7w31ucqpvh5","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:31.375424Z","updated_at":"2021-06-02T10:56:31.375666Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292688} +{"stream":"annotations","data":{"id":2960,"content":"el9gx8p18rg2j","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:31.789255Z","updated_at":"2021-06-02T10:56:31.789473Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292688} +{"stream":"annotations","data":{"id":2992,"content":"o97ha316460nr","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:39.052004Z","updated_at":"2021-06-02T10:56:39.052236Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292688} +{"stream":"annotations","data":{"id":2882,"content":"tnpjsk2","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:29.497426Z","updated_at":"2021-05-27T14:09:29.497738Z","deleted":false,"scope":"organization"},"emitted_at":1668174292688} +{"stream":"annotations","data":{"id":2918,"content":"lb37j520e0ekv43p","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:21.668430Z","updated_at":"2021-06-02T10:56:21.668739Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292688} +{"stream":"annotations","data":{"id":2993,"content":"wj0org4y2u1bef","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:39.282558Z","updated_at":"2021-06-02T10:56:39.282816Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292689} +{"stream":"annotations","data":{"id":2994,"content":"htwpf8u7p4sac6","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:39.508605Z","updated_at":"2021-06-02T10:56:39.509189Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292689} +{"stream":"annotations","data":{"id":2884,"content":"alrg2iq","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:29.961707Z","updated_at":"2021-05-27T14:09:29.961933Z","deleted":false,"scope":"organization"},"emitted_at":1668174292689} +{"stream":"annotations","data":{"id":2919,"content":"nxfiiqrnh3","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:21.871426Z","updated_at":"2021-06-02T10:56:21.871662Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292689} +{"stream":"annotations","data":{"id":2932,"content":"o65w1xd3ffs3jor51","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:25.363276Z","updated_at":"2021-06-02T10:56:25.363495Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292689} +{"stream":"annotations","data":{"id":2937,"content":"o2oosdidjerr94","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:26.493936Z","updated_at":"2021-06-02T10:56:26.494195Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292689} +{"stream":"annotations","data":{"id":2962,"content":"fl5oa942kocj","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:32.236648Z","updated_at":"2021-06-02T10:56:32.236944Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174292689} +{"stream":"annotations","data":{"id":2885,"content":"fm9pn0o","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:30.164435Z","updated_at":"2021-05-27T14:09:30.164661Z","deleted":false,"scope":"organization"},"emitted_at":1668174292690} +{"stream":"annotations","data":{"id":2920,"content":"sbgp1khytmftdf","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:22.088411Z","updated_at":"2021-06-02T10:56:22.088726Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293072} +{"stream":"annotations","data":{"id":2886,"content":"5r3s3ld","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:30.376829Z","updated_at":"2021-05-27T14:09:30.377107Z","deleted":false,"scope":"organization"},"emitted_at":1668174293072} +{"stream":"annotations","data":{"id":2922,"content":"gbubvj41y6qas","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:22.517635Z","updated_at":"2021-06-02T10:56:22.517944Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293072} +{"stream":"annotations","data":{"id":2939,"content":"tpbyru1yubytovy","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:27.279983Z","updated_at":"2021-06-02T10:56:27.280216Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293072} +{"stream":"annotations","data":{"id":2887,"content":"a5exyhc","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:30.591563Z","updated_at":"2021-05-27T14:09:30.591838Z","deleted":false,"scope":"organization"},"emitted_at":1668174293072} +{"stream":"annotations","data":{"id":2925,"content":"f440su460cv","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:23.466746Z","updated_at":"2021-06-02T10:56:23.466977Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293072} +{"stream":"annotations","data":{"id":2965,"content":"x8amduxu8j7c","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:32.939263Z","updated_at":"2021-06-02T10:56:32.939855Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293073} +{"stream":"annotations","data":{"id":2888,"content":"r0kjvc3","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:30.795574Z","updated_at":"2021-05-27T14:09:30.795826Z","deleted":false,"scope":"organization"},"emitted_at":1668174293073} +{"stream":"annotations","data":{"id":2927,"content":"g6c2qveiwa0x5b4h7n9","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:23.905158Z","updated_at":"2021-06-02T10:56:23.905376Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293073} +{"stream":"annotations","data":{"id":2949,"content":"8lrecbivtlhq66nw","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:29.398023Z","updated_at":"2021-06-02T10:56:29.398273Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293073} +{"stream":"annotations","data":{"id":2889,"content":"t9dy5h8","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:30.999744Z","updated_at":"2021-05-27T14:09:31.000020Z","deleted":false,"scope":"organization"},"emitted_at":1668174293073} +{"stream":"annotations","data":{"id":2929,"content":"2hmdtvt66ox","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:24.327658Z","updated_at":"2021-06-02T10:56:24.327960Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293073} +{"stream":"annotations","data":{"id":2964,"content":"ak2efquegcg08vb","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:32.672168Z","updated_at":"2021-06-02T10:56:32.672480Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293074} +{"stream":"annotations","data":{"id":2968,"content":"kbopo4qkpqgqsj8nfc9","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:33.650856Z","updated_at":"2021-06-02T10:56:33.651111Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293074} +{"stream":"annotations","data":{"id":2890,"content":"xjnemj1","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:31.204549Z","updated_at":"2021-05-27T14:09:31.204858Z","deleted":false,"scope":"organization"},"emitted_at":1668174293074} +{"stream":"annotations","data":{"id":2930,"content":"iqiehup93a9m","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:24.549719Z","updated_at":"2021-06-02T10:56:24.550040Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293074} +{"stream":"annotations","data":{"id":2891,"content":"jnfshih","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:31.417414Z","updated_at":"2021-05-27T14:09:31.417675Z","deleted":false,"scope":"organization"},"emitted_at":1668174293074} +{"stream":"annotations","data":{"id":2931,"content":"6v11xb33mivye","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:25.138229Z","updated_at":"2021-06-02T10:56:25.138482Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293074} +{"stream":"annotations","data":{"id":2933,"content":"xmn0vhwsc2rohnqy","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:25.577800Z","updated_at":"2021-06-02T10:56:25.578058Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293074} +{"stream":"annotations","data":{"id":2934,"content":"a2bklqgsb8dfs9ny9","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:25.793939Z","updated_at":"2021-06-02T10:56:25.794270Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293075} +{"stream":"annotations","data":{"id":2935,"content":"1q347g9fqfr7q","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:26.072002Z","updated_at":"2021-06-02T10:56:26.072283Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293075} +{"stream":"annotations","data":{"id":2963,"content":"fj2o8sg8xgma82","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:32.455744Z","updated_at":"2021-06-02T10:56:32.455990Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293075} +{"stream":"annotations","data":{"id":2941,"content":"n6ggeyksn3tga6","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:27.682987Z","updated_at":"2021-06-02T10:56:27.683236Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293075} +{"stream":"annotations","data":{"id":2861,"content":"6xh56pb","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T14:09:03.452223Z","updated_at":"2021-05-27T14:09:03.452548Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293075} +{"stream":"annotations","data":{"id":2946,"content":"oi007dfvod1llw3e","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:28.744721Z","updated_at":"2021-06-02T10:56:28.744953Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293075} +{"stream":"annotations","data":{"id":2950,"content":"cjv4ytle8vk4b63ok","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:29.619259Z","updated_at":"2021-06-02T10:56:29.619509Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293076} +{"stream":"annotations","data":{"id":2947,"content":"81f1ob83wqkcaryttn47","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:28.972976Z","updated_at":"2021-06-02T10:56:28.973321Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293076} +{"stream":"annotations","data":{"id":2951,"content":"1qt07u2jmctkk5ra8","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:29.831553Z","updated_at":"2021-06-02T10:56:29.831832Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293076} +{"stream":"annotations","data":{"id":2952,"content":"jqsrm31f9asx4m","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:30.049684Z","updated_at":"2021-06-02T10:56:30.049901Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293076} +{"stream":"annotations","data":{"id":2954,"content":"o5bvsl4jpt0fehq2","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:30.499275Z","updated_at":"2021-06-02T10:56:30.499494Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293076} +{"stream":"annotations","data":{"id":2959,"content":"22w89vestv3pnfr1","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:31.577338Z","updated_at":"2021-06-02T10:56:31.577587Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293077} +{"stream":"annotations","data":{"id":2961,"content":"hx153ai3dcjhgfj","date_marker":null,"creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-06-02T10:56:32.010488Z","updated_at":"2021-06-02T10:56:32.010728Z","deleted":false,"scope":"dashboard_item"},"emitted_at":1668174293077} +{"stream":"annotations","data":{"id":2766,"content":"test","date_marker":"2021-04-13T18:20:47.276000Z","creation_type":"USR","dashboard_item":null,"insight_short_id":null,"insight_name":null,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-04-13T18:20:54.640612Z","updated_at":"2021-04-13T18:20:54.640947Z","deleted":false,"scope":"organization"},"emitted_at":1668174293077} +{"stream":"cohorts","data":{"id":1159,"name":"x3lme8g09lptmh","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0a05":"9ay9","2gsu":"do4wuk","8ouy":"m8sp3iw","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:19.942510Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295536} +{"stream":"cohorts","data":{"id":1158,"name":"5cosln6j439qaw","description":"","groups":[{"days":null,"action_id":null,"properties":[{"414s":"98yr8j3","97be":"4q85rh","fqxo":"peakw","idcb":"2ftv3a","p35o":"36iw","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:19.704920Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295571} +{"stream":"cohorts","data":{"id":1157,"name":"xf74a004ok4n01","description":"","groups":[{"days":null,"action_id":null,"properties":[{"boy4":"obql","w51i":"jw9qxb80b1","wbof":"pcumtpx9i","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:19.457916Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295571} +{"stream":"cohorts","data":{"id":1156,"name":"war40g2kfc77rs","description":"","groups":[{"days":null,"action_id":null,"properties":[{"a8q4":"eqdlkfw1","hyh0":"mpjwn8rb","kgj2":"bcgdc","mufo":"lher","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:19.219058Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295571} +{"stream":"cohorts","data":{"id":1155,"name":"07gt8ubj3x4ire","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4e12":"v8a0cr","5bag":"jrsyjxiwm","bnap":"us4s","keg5":"1ltbgni7b4","qfdf":"uuupaj35","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:18.953023Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295572} +{"stream":"cohorts","data":{"id":1154,"name":"iqltwbd1mtusbv","description":"","groups":[{"days":null,"action_id":null,"properties":[{"tnan":"5869a","vj2g":"xdmv","x6n4":"b1p6p7ovnn","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:18.716725Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295572} +{"stream":"cohorts","data":{"id":1153,"name":"2gfmav6wo2f3nq","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2k6e":"a9uqxt76jt","8ixr":"cdeerw22","yo3u":"tk5px1","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:18.464179Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295572} +{"stream":"cohorts","data":{"id":1152,"name":"470789q7paw3lm","description":"","groups":[{"days":null,"action_id":null,"properties":[{"278y":"hc5f","383f":"8yl1cdj4n","99me":"st7yho8ck","9q78":"ywd1","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:18.195143Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295572} +{"stream":"cohorts","data":{"id":1151,"name":"fls9v0qv4c7wuq","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3pqr":"ov83tf3","613l":"srkeaks8","ckw5":"1exjwk2p","gf2d":"t6yljx","xt20":"4rbj79rpo","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:17.958119Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295573} +{"stream":"cohorts","data":{"id":1150,"name":"yluty60heq24d2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7tku":"h4q28kd","88se":"di7aj8931","e1cs":"9hyc7425oe","m8g0":"yv07o6r","yp52":"9ano0mdj6a","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:17.719335Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295573} +{"stream":"cohorts","data":{"id":1149,"name":"lra07fat49dnwk","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0g49":"iitq2x","9hvh":"no4nsfa","h8gi":"bwrto1lrq","lbgb":"jsr18g","lkjk":"f7uis","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:17.478923Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295573} +{"stream":"cohorts","data":{"id":1148,"name":"rf92xlajadp3ko","description":"","groups":[{"days":null,"action_id":null,"properties":[{"gc6n":"yi5sf02hvm","rr66":"hrvivaq14","upa7":"exvg37q","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:17.203129Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295573} +{"stream":"cohorts","data":{"id":1147,"name":"ajftpgsw6cupvt","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0mv8":"hii52uipc","1nwm":"q4fj","e1lh":"cq36","kgf3":"84flj56ogj","q926":"sq1v2769","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:16.967512Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295573} +{"stream":"cohorts","data":{"id":1146,"name":"0i6pxjcqfs0jhq","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7mdy":"g3fqmbsdhj","isjc":"as658","r7ns":"ubaj729hh","u5w6":"05slfpq","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:16.731597Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295574} +{"stream":"cohorts","data":{"id":1145,"name":"r7pxk2c2jpu82o","description":"","groups":[{"days":null,"action_id":null,"properties":[{"02c1":"o5d2ev5h","0wfi":"e1v5sgg","i0f1":"xf7kixmp8","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:16.477631Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295574} +{"stream":"cohorts","data":{"id":1144,"name":"qgcng1g1bcg74d","description":"","groups":[{"days":null,"action_id":null,"properties":[{"c6rs":"pn25o","d2pn":"b0iva7rio","r8xf":"7a5k2","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:16.233407Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295574} +{"stream":"cohorts","data":{"id":1143,"name":"x5kab35otw3yyu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"a25b":"8mnogjxd","bst9":"ec9w9p3l","kefp":"9s5uqq3m5r","nc5m":"2bp58o","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:15.990349Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295574} +{"stream":"cohorts","data":{"id":1142,"name":"gucyhiwg8atat2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"atex":"idr8u16b","ja3i":"u5y1nhu","lg3m":"krgde8","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:15.751146Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295575} +{"stream":"cohorts","data":{"id":1141,"name":"a3705xvj7kcqdo","description":"","groups":[{"days":null,"action_id":null,"properties":[{"hmm7":"wjjxe1nadd","svts":"b76mqh6luu","wu38":"gtwll","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:15.484042Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295575} +{"stream":"cohorts","data":{"id":1140,"name":"buseyvmgygalfg","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6jqi":"tqs4na","fwna":"md6777e8","mrxp":"ypof3w6","p7ae":"obvg","s5ga":"e7pnqln","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:15.240409Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295575} +{"stream":"cohorts","data":{"id":1139,"name":"2k42906hyql8gk","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4gne":"6jiuv3a","efyk":"xkyp7vbql","h1v0":"jkvw1su","ilnu":"dso85rnm","o9ie":"38lvqlibtp","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:14.999141Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295575} +{"stream":"cohorts","data":{"id":1138,"name":"4u5m19ii71ah3u","description":"","groups":[{"days":null,"action_id":null,"properties":[{"ebks":"xtkue","k3a8":"j8fr8w","pqf3":"ikdi","w4mr":"f82s91ag9","wapq":"xh0l","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:14.733725Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295576} +{"stream":"cohorts","data":{"id":1137,"name":"ieqgu6kjn9yfao","description":"","groups":[{"days":null,"action_id":null,"properties":[{"769i":"bg36l","gl19":"dr9j93","hl3u":"0l6osh3","j27y":"wqok6m2g","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:14.496567Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295576} +{"stream":"cohorts","data":{"id":1136,"name":"5au6vwcosi7dhe","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0mvk":"qvdf3","33by":"84kmppyu","fr4r":"2ckc","utxs":"1oe6ris","yofq":"twqomme","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:14.252956Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295576} +{"stream":"cohorts","data":{"id":1135,"name":"ddi6wpo3xjp53c","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6x02":"b9v41g","htw0":"apuk9hdtje","kmi9":"9te4","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:14.013406Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295576} +{"stream":"cohorts","data":{"id":1134,"name":"yjrxj53o9f379b","description":"","groups":[{"days":null,"action_id":null,"properties":[{"43ct":"im9ny","4k3l":"m5jlfhy5s","divj":"k7ph70md8","oqsk":"ojjpx9yu","up8u":"kod149v4","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:13.753083Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295576} +{"stream":"cohorts","data":{"id":1133,"name":"ln5seh90cbm19r","description":"","groups":[{"days":null,"action_id":null,"properties":[{"adr5":"tgynw78fh","h3kw":"t1r1gcha9","ybf5":"65fd1a","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:13.518371Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295577} +{"stream":"cohorts","data":{"id":1132,"name":"upmnlwsldqyna6","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8o5j":"fv2c71s3x8","fejn":"qtj8j","vwy7":"taan24pk87","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:13.276195Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295577} +{"stream":"cohorts","data":{"id":1131,"name":"08niupxp9pyqfj","description":"","groups":[{"days":null,"action_id":null,"properties":[{"preo":"mqcbm32","t6ml":"hmt1ruq","xih1":"t0tso24","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:13.019569Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295577} +{"stream":"cohorts","data":{"id":1130,"name":"7g7bnye7rptwx2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7uy8":"gp7vu","j1bm":"r46d8g2","jki3":"xkve8tlk","jxo9":"ucdx","q790":"jsvo","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:12.774650Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295577} +{"stream":"cohorts","data":{"id":1129,"name":"vctdehp1jb6w9g","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0bc9":"7k3c","kono":"0s1y","w1en":"s6i1s25by","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:12.534052Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295577} +{"stream":"cohorts","data":{"id":1128,"name":"95j24yuv81ln2y","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1arp":"k3qhqk6l","m4na":"3aw7k390","w3ih":"p1m2sy5qq","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:12.292705Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295577} +{"stream":"cohorts","data":{"id":1127,"name":"dshc5akj1r6x86","description":"","groups":[{"days":null,"action_id":null,"properties":[{"fw7u":"uf5ugor","i6nd":"nj6fvq45","l2n5":"e82xp3","nlwp":"6nccwjxb6","xgd7":"fp89by91","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:12.041527Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295577} +{"stream":"cohorts","data":{"id":1126,"name":"mtr3g7i2bhm0m8","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2qqt":"mqp5v3","bbx6":"eiy28l","jchi":"y7p06ef30","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:11.797880Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295578} +{"stream":"cohorts","data":{"id":1125,"name":"b9ncxirb8h2avy","description":"","groups":[{"days":null,"action_id":null,"properties":[{"hnlq":"y7w2vjol","kid9":"g8vbqaoik","q77t":"bqbnjcgeq7","rgnd":"p013v4dk","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:11.553074Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295578} +{"stream":"cohorts","data":{"id":1124,"name":"v1tc15prbva4t0","description":"","groups":[{"days":null,"action_id":null,"properties":[{"605o":"b3e1q0n3","6xh2":"y797","bjjt":"m2wxws","mcb9":"7mw9w","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:11.301107Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295578} +{"stream":"cohorts","data":{"id":1123,"name":"keib6udxupxgun","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8iru":"reyeha9","aubd":"04koialqa","l403":"8toq8h4","ytde":"315otqj","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:11.061849Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295578} +{"stream":"cohorts","data":{"id":1122,"name":"dn6r4ue9owe47n","description":"","groups":[{"days":null,"action_id":null,"properties":[{"5i2r":"q5vyoe","frm4":"wcyn","ngnv":"f4eikj2ri","tcoy":"4mof1q918","xgq9":"q7vuemv","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:10.816420Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295578} +{"stream":"cohorts","data":{"id":1121,"name":"s1mmu8dr4at5my","description":"","groups":[{"days":null,"action_id":null,"properties":[{"d28g":"x7dvhyvf","kf9a":"h2171u19ks","v5jq":"3jg6fe","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:10.577022Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295578} +{"stream":"cohorts","data":{"id":1120,"name":"nsil1k5w6iy2c0","description":"","groups":[{"days":null,"action_id":null,"properties":[{"hol7":"ko2a","ub0n":"h4iute7sw","vts1":"0fssmtiw9","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:10.318030Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295578} +{"stream":"cohorts","data":{"id":1119,"name":"nuo1tkm2usd83v","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2hhl":"tqfggq","6geo":"ykuihgtetb","e4wb":"445j1s","pbp9":"pj6nmbo2s","qklk":"la4i993","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:10.078465Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295579} +{"stream":"cohorts","data":{"id":1118,"name":"7p6tmogapi0h8g","description":"","groups":[{"days":null,"action_id":null,"properties":[{"k6u4":"2rj1a03d","q9jn":"6sf5clqbsr","riyk":"4i6v","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:09.788470Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295579} +{"stream":"cohorts","data":{"id":1117,"name":"aisvwcbligv01h","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1h57":"yqmhec2p","jwlh":"nfsubdeaia","uokx":"axb8p4","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:09.529531Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295579} +{"stream":"cohorts","data":{"id":1116,"name":"xbn44v9a7keedl","description":"","groups":[{"days":null,"action_id":null,"properties":[{"n666":"ue2hfp","u5ul":"t5e4vf","uaoh":"w6l1dmq9","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:09.284805Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295579} +{"stream":"cohorts","data":{"id":1115,"name":"i5dj6b5diq7t40","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0wyx":"xxf8tgtei","31cx":"gdurvl43m","7apf":"8ldvgaosk","shpl":"5cckxy73","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:09.052691Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295579} +{"stream":"cohorts","data":{"id":1114,"name":"vf8ig72munajes","description":"","groups":[{"days":null,"action_id":null,"properties":[{"34b3":"ajlqb","987b":"6xtcnsfsbv","s4i7":"btkjq4my6","vpop":"nvng9sn7h0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:08.806494Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295579} +{"stream":"cohorts","data":{"id":1113,"name":"gog8qtof8rre3s","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1s69":"xj6pvj","2r3g":"f9v73jy","wc2m":"gn3juo","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:08.546005Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295580} +{"stream":"cohorts","data":{"id":1112,"name":"krnkn12fhwtgf2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7j4d":"22c4kyh24l","aabo":"fv05dwxymg","ha49":"sf4bunujaw","lbph":"2in4","ypmw":"8caf","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:08.295868Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295580} +{"stream":"cohorts","data":{"id":1111,"name":"vvt58lq2o1ad62","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1gdq":"y3ydpahowv","b3ud":"sxm7ceq3","g35v":"8j7l5aeh","n4qq":"3qwjoqyc6v","s13n":"qcye7nvs","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:08.064161Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295580} +{"stream":"cohorts","data":{"id":1110,"name":"1skvb0vc1xrpyo","description":"","groups":[{"days":null,"action_id":null,"properties":[{"31yl":"dw4yo04","661v":"xdj5w4","ihgw":"ys09kwism","q2ty":"wu7qhub","q4cd":"7dyxuu8","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:07.816421Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295580} +{"stream":"cohorts","data":{"id":1109,"name":"e4vhbhsdfouuie","description":"","groups":[{"days":null,"action_id":null,"properties":[{"67qw":"910gx5jsae","e32r":"lgteke06q","grdv":"1sy5h2e","lade":"5iga0c","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:07.581504Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295580} +{"stream":"cohorts","data":{"id":1108,"name":"to39g0mlvhvdim","description":"","groups":[{"days":null,"action_id":null,"properties":[{"981d":"a3so83pjv8","mc9v":"m1ek","p4wt":"vsd78cxa","qfmx":"smbs","r27p":"y59c9th","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:07.362427Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295581} +{"stream":"cohorts","data":{"id":1107,"name":"54rg0sbtlrnr24","description":"","groups":[{"days":null,"action_id":null,"properties":[{"gyfy":"yfdq3mkq","hrkt":"69mt","xah5":"usb9565","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:07.109351Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295581} +{"stream":"cohorts","data":{"id":1106,"name":"oys817snww0o8d","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2pa9":"xhjtw36","c4we":"69ht7hh0","n0i7":"1uhp22oq2","rmrv":"7qwjkpx8b","y696":"lmdjb6bn","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:06.846546Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295581} +{"stream":"cohorts","data":{"id":1105,"name":"u51nojyjxn7lvc","description":"","groups":[{"days":null,"action_id":null,"properties":[{"l37q":"0ble8f357","lrgr":"v1jvh","nlh9":"nve52mm","w8at":"c6dp9j","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:06.604649Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295581} +{"stream":"cohorts","data":{"id":1104,"name":"ne7v44lrr22y3g","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6ex4":"6n50","gux7":"341lm8mceo","h90m":"465rcu","jqcb":"j0trfhucqr","p01a":"9g9kqx5","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:06.368166Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295581} +{"stream":"cohorts","data":{"id":1103,"name":"em1787l4hdfh2y","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1h22":"b218c6o8s","cwj8":"15i47vnaak","m7eh":"wrfryc","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:06.126833Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295581} +{"stream":"cohorts","data":{"id":1102,"name":"4o4mxn5wxual68","description":"","groups":[{"days":null,"action_id":null,"properties":[{"n4ww":"j7xtx72","rhch":"wm3gio","u5ea":"94uw2","yi74":"s6bvxrg","yi96":"kqix5krp0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:05.892395Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295582} +{"stream":"cohorts","data":{"id":1101,"name":"lnyg8epqrwmbkn","description":"","groups":[{"days":null,"action_id":null,"properties":[{"hh41":"0c9v9x","r175":"vhq4bjgb","rqrw":"cvn1j7rlak","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:05.648103Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295582} +{"stream":"cohorts","data":{"id":1100,"name":"wjnb0ywlece39i","description":"","groups":[{"days":null,"action_id":null,"properties":[{"85rj":"ppvkdlpdc","h0yo":"xfywwg","l25s":"kauv3","qux1":"f51s79","rb93":"hamwhxyrh5","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:05.416466Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295582} +{"stream":"cohorts","data":{"id":1099,"name":"su31dr9317p9km","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4s5u":"hxohv65j","k70b":"c40nb","kmh0":"tkc3cv8v","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:05.128759Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295582} +{"stream":"cohorts","data":{"id":1098,"name":"af5775w3qp8nnd","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0xgk":"sit6mdac","56dk":"9k5g","9xos":"98d5","dth8":"bhhl9rf","l5ue":"j32qi0vx","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:04.893391Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295582} +{"stream":"cohorts","data":{"id":1097,"name":"ep23co9itdqu8q","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3sw7":"ygmxs1c","f3j6":"4x8mgf1tlo","lbtg":"ur8fi3txx","om31":"yioiajb0s","v972":"onvujqpo","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:04.658246Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295582} +{"stream":"cohorts","data":{"id":1096,"name":"uuq8m2snrdfec7","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1xjs":"w4j68rif","e3ac":"43qyw","no2r":"l6cqhpb","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:04.412619Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295583} +{"stream":"cohorts","data":{"id":1095,"name":"ydyysatkydoj6n","description":"","groups":[{"days":null,"action_id":null,"properties":[{"evll":"djffjnr1","fry6":"6jm1sh32is","u8ur":"dv9c","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:04.166239Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295583} +{"stream":"cohorts","data":{"id":1094,"name":"14xqe5jvjvx0ge","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4yxk":"sp5fbvobmc","662c":"bqhnyl7066","fy0n":"nqt2txc7","qqug":"2yoi70","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:03.920477Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295583} +{"stream":"cohorts","data":{"id":1093,"name":"ctkwkgur0nn9d2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"bdtr":"jn2w2dd81r","crwm":"db1w","ot0c":"3mttb1k","q76s":"bercxof1","sesd":"gpnfl191","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:03.684355Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295583} +{"stream":"cohorts","data":{"id":1092,"name":"pujofwegf1pmqj","description":"","groups":[{"days":null,"action_id":null,"properties":[{"626r":"iqey3pnp7v","dq6w":"a8ln","y7w9":"oa4vl","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:03.431205Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295583} +{"stream":"cohorts","data":{"id":1091,"name":"8k6yyutq9g3tm6","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0j6v":"sibuh0j7","3t78":"00q8bummau","tftf":"hm5qp4cb","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:03.188295Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295583} +{"stream":"cohorts","data":{"id":1090,"name":"lknjh8okvglgei","description":"","groups":[{"days":null,"action_id":null,"properties":[{"13g6":"p2hf6","no6i":"2v0rn6tkm","ymca":"o854f","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:02.962168Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295584} +{"stream":"cohorts","data":{"id":1089,"name":"nehueh3ix8sjcd","description":"","groups":[{"days":null,"action_id":null,"properties":[{"9ept":"vtrvc","jxpq":"cvn6stbqt","mclw":"ar8yrf5yy","ogxk":"6xwkskv0","uon5":"cbnqc","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:02.727008Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295584} +{"stream":"cohorts","data":{"id":1088,"name":"oyqy29ar7hw3df","description":"","groups":[{"days":null,"action_id":null,"properties":[{"9cm5":"xitb2iw7r","fwu2":"6uxv","m9oq":"vk6y","ng6g":"ia9qk1qhc","phu1":"kmi4pcj","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:02.490053Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295584} +{"stream":"cohorts","data":{"id":1087,"name":"80bglb3uvy5cq3","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3egl":"mndhiecku2","geht":"s6mb41o483","h90l":"a8mtb6o","i866":"l7k0u","jyvh":"2wehih97","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:02.258245Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295584} +{"stream":"cohorts","data":{"id":1086,"name":"cxy460eopx0ort","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1f29":"vkgchb58j6","1hx5":"crf3qki","an1j":"0n90oq8","hryv":"lprst30ye","omde":"twij97","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:02.023184Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295584} +{"stream":"cohorts","data":{"id":1085,"name":"g22anfib7ogtgp","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0ysk":"hsqchlyu5","uq86":"8go3u","v25n":"y21u10c35","yylj":"721rex0hq","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:01.779719Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295584} +{"stream":"cohorts","data":{"id":1084,"name":"6ffnfxslxdol3f","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3l0h":"i1tvpulw","5udm":"ltiydst1ji","n8r6":"d31ik14","oqhl":"wxqlow","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:01.539608Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295585} +{"stream":"cohorts","data":{"id":1083,"name":"fru7yxvpx4wxms","description":"","groups":[{"days":null,"action_id":null,"properties":[{"9fsq":"1thilbb74e","lmfj":"eaxr","ltr1":"j8qu7w","oomm":"6xo9bklif","qxb6":"39i3pxo8l4","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:01.319801Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295585} +{"stream":"cohorts","data":{"id":1082,"name":"9iqupe2x4x7c4e","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0d3t":"kxal2n","0v4i":"v4h14","j6br":"6441","msg0":"3wrnv9ey","vhdq":"ben4b7boac","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:01.073628Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295585} +{"stream":"cohorts","data":{"id":1081,"name":"dekbtbpv0ke21k","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3djs":"cxji23e7s","cf23":"xw8xt5jcb","sbox":"8g434","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:00.849674Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295585} +{"stream":"cohorts","data":{"id":1080,"name":"grwq2enj51wm1x","description":"","groups":[{"days":null,"action_id":null,"properties":[{"kiqt":"i1ow8fo9u3","ktp6":"6jiy","ugo1":"put6","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:00.614011Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295585} +{"stream":"cohorts","data":{"id":1079,"name":"3n8hltvsc5y1xm","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0r14":"4isf2","csch":"mv9w","g8oe":"c1t7pxr","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:00.376691Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295585} +{"stream":"cohorts","data":{"id":1078,"name":"74h0uhvk3ah3d7","description":"","groups":[{"days":null,"action_id":null,"properties":[{"p2ff":"qba3","pm8c":"mh1p","rcv6":"7n6q7uo2","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:22:00.144306Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295585} +{"stream":"cohorts","data":{"id":1077,"name":"o0xo5ddruopw85","description":"","groups":[{"days":null,"action_id":null,"properties":[{"28nd":"77yx","2nlw":"ff0hdx","ghun":"iwtat0","q2vc":"kcqm","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:59.910810Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295586} +{"stream":"cohorts","data":{"id":1076,"name":"apyuroi6gn9yvt","description":"","groups":[{"days":null,"action_id":null,"properties":[{"lqfl":"q5ofjuve","rm3q":"jhirg5o","tsrw":"qa61t","x3q9":"fpgu3","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:59.685482Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295586} +{"stream":"cohorts","data":{"id":1075,"name":"0vnmn128g3q1jl","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2237":"ceto","skce":"q9rrfa8","yh0p":"xhir0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:59.435789Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295586} +{"stream":"cohorts","data":{"id":1074,"name":"09i5ggbr1uw0f2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7jbv":"04uln4o","dghm":"4ewwtixg9x","hd5b":"bibllqva","iqjp":"oyiaps4ft","p00a":"5qs5y51","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:59.223481Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295586} +{"stream":"cohorts","data":{"id":1073,"name":"nqvufrsrl642wx","description":"","groups":[{"days":null,"action_id":null,"properties":[{"24o5":"h9b0","5cs4":"4pw3i","aos4":"7eu3fcgy","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:58.976071Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295586} +{"stream":"cohorts","data":{"id":1072,"name":"wvo15g0blmaqw8","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2x8m":"1tmt","8i8m":"qvtrv","ayob":"6qryrblhla","hdn2":"ppn00bfe","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:58.737030Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295586} +{"stream":"cohorts","data":{"id":1071,"name":"srfi7bbkixnyiw","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8e89":"3ao1l","e7xv":"w6q3tov","ryd0":"9bc31ubg","w9o4":"yv9kmh0p7","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:58.498952Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295586} +{"stream":"cohorts","data":{"id":1070,"name":"2neqxdplxojqus","description":"","groups":[{"days":null,"action_id":null,"properties":[{"5ayn":"1x7pr6","peyi":"bhgbkq","wu9y":"6ed2ycu","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:58.268754Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295587} +{"stream":"cohorts","data":{"id":1069,"name":"n5kkod5oxms9n6","description":"","groups":[{"days":null,"action_id":null,"properties":[{"b2f7":"v58fe2gtnx","hc7f":"2csvfl0886","qkmc":"ggms","sfpx":"ted4hc","tjub":"ri4krkwh","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:58.039736Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295587} +{"stream":"cohorts","data":{"id":1068,"name":"qcgrsgvt6me5a6","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6mt2":"gmm0l3t","n2ix":"urs2gkui3v","vppi":"k509ksxt1","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:57.802682Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295587} +{"stream":"cohorts","data":{"id":1067,"name":"1kk0q67m8qfdk6","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2rns":"9ag7","5snq":"bq5j65two3","p9js":"qwgk6r628i","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:57.576921Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295587} +{"stream":"cohorts","data":{"id":1066,"name":"s1kgc4tjq2yuo0","description":"","groups":[{"days":null,"action_id":null,"properties":[{"jxgd":"bdath","m2os":"bgeuqu1p","r2iu":"ult9","tba3":"g0eh3dv","tnye":"vhs49xmc","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:57.351248Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295587} +{"stream":"cohorts","data":{"id":1065,"name":"ojinhqnsepglru","description":"","groups":[{"days":null,"action_id":null,"properties":[{"aw5l":"9rt8c3l","fp9h":"cywi","j8tw":"20iif3u","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:57.120594Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295587} +{"stream":"cohorts","data":{"id":1064,"name":"9mfrvecm4pfnrl","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0r9q":"qv89m7","643n":"2cnn1h2","99k7":"rmsh3ohh","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:56.890685Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295587} +{"stream":"cohorts","data":{"id":1063,"name":"jc8myn7htl3jjl","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0xsy":"eu4ea0us","5y88":"ax6h","656y":"2n1vc","9jsa":"v6m103sqx","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:56.668367Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295588} +{"stream":"cohorts","data":{"id":1062,"name":"xhmvqu5aapt31u","description":"","groups":[{"days":null,"action_id":null,"properties":[{"h3gd":"ptxrd","h91i":"yykpvt1h2","mect":"a78ck8wh","r53a":"900qv1","stt9":"foohxx5i8","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:56.436677Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295588} +{"stream":"cohorts","data":{"id":1061,"name":"6ycpkcaouken4v","description":"","groups":[{"days":null,"action_id":null,"properties":[{"loht":"m17nqley9","t6ck":"rrm9bc","xa2o":"jfcbgu0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:56.203145Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295588} +{"stream":"cohorts","data":{"id":1060,"name":"o6stcv489b5sgb","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3tal":"s6qgvs2","da4f":"xkljq8l69","dijj":"0gc1ot","exs3":"r8cyxcm4","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:55.966070Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174295588} +{"stream":"cohorts","data":{"id":1059,"name":"4nh6gdme9w847x","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8r9y":"edv20cllq","mutm":"la4v","qkr0":"w6vm9","x194":"55q41ta3","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:55.747543Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296359} +{"stream":"cohorts","data":{"id":1058,"name":"di3wwwpwc0yws4","description":"","groups":[{"days":null,"action_id":null,"properties":[{"bq3r":"mmutp","ic1c":"fe9f","roh9":"haewewnc","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:55.520372Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296359} +{"stream":"cohorts","data":{"id":1057,"name":"m0qbxgiad6s6fu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2sqa":"2gv2f9hf","3e5d":"4i3n","cri5":"x3445ifib3","nab6":"cs3h8","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:55.287369Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296359} +{"stream":"cohorts","data":{"id":1056,"name":"ucpgmbrkba3syp","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2eb0":"w1cqkxxh44","faen":"le1p6l","wpwn":"08yf9cpyae","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:55.064100Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296359} +{"stream":"cohorts","data":{"id":1055,"name":"98ivx71budm0y5","description":"","groups":[{"days":null,"action_id":null,"properties":[{"aloq":"mmlf1dpcq7","i5u2":"ao0cpn","kar2":"h3wf0","uwro":"2pwh9sjh","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:54.822428Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296359} +{"stream":"cohorts","data":{"id":1054,"name":"g9dcp4v5l6kli3","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7b2q":"4k5smg5jx","8t8a":"832ng8","bjrg":"231psk","dwdu":"hr0qg9nd","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:54.595517Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296360} +{"stream":"cohorts","data":{"id":1053,"name":"v1wd5mvxklj7wu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"47ns":"60hr8eq","5sln":"gswk","70ou":"8t0yyo","jeqa":"0pv3","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:54.368569Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296360} +{"stream":"cohorts","data":{"id":1052,"name":"ywau5fyl9rff4q","description":"","groups":[{"days":null,"action_id":null,"properties":[{"dg87":"owko142","eh4n":"3nbu65","f7an":"bpi1ce","jba3":"pcpg6yx","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:54.144437Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296360} +{"stream":"cohorts","data":{"id":1051,"name":"dm4qtocpxgc4e8","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6ubg":"0i04h5o","qh3j":"t1utcsgv","v0ci":"6ejxi","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:53.924844Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296360} +{"stream":"cohorts","data":{"id":1050,"name":"99cd8kgr2vlnfv","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3his":"gvjy1plxa","ak5g":"sc81mbw9","fg6r":"ukhx738t","tg11":"e545mwii","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:53.688276Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296360} +{"stream":"cohorts","data":{"id":1049,"name":"2o7sn7uytorpav","description":"","groups":[{"days":null,"action_id":null,"properties":[{"fxva":"ggr6sy","rgqj":"gvn2jhhg","yc4h":"dhj4e","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:53.468432Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296360} +{"stream":"cohorts","data":{"id":1048,"name":"ccwkjsef72u3sa","description":"","groups":[{"days":null,"action_id":null,"properties":[{"302b":"h9dm6u8","je2q":"jmw4d","xqlw":"t1v135n9f","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:53.251649Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296360} +{"stream":"cohorts","data":{"id":1047,"name":"jujbdstlq7qslh","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7bcg":"xopyjng","faar":"37toaoum0","h1wq":"guerd","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:53.013894Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296361} +{"stream":"cohorts","data":{"id":1046,"name":"ww0xl93a99346j","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4wvp":"r5mn3luq","gyl0":"503jq3","v2mj":"684bvel8ag","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:52.804593Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296361} +{"stream":"cohorts","data":{"id":1045,"name":"wjfdflpwlv1ur5","description":"","groups":[{"days":null,"action_id":null,"properties":[{"5u3w":"eq150dh8","apq4":"hgfjxsaek","divm":"hfns2q","jp1l":"f3pt605s","xvmd":"jsql9an","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:52.572001Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296361} +{"stream":"cohorts","data":{"id":1044,"name":"39h4jcm1yemekb","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8fy6":"akhi9ys","9756":"d1f3fr3q","cwhc":"0ifg09","m2e8":"nm5g4jiqp","xhgw":"f0r3k83","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:52.342765Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296361} +{"stream":"cohorts","data":{"id":1043,"name":"cttbbahmbkpddd","description":"","groups":[{"days":null,"action_id":null,"properties":[{"d1s8":"2b0dc8e1","fhdy":"fiem4f43m0","jenc":"6gdhk","unmn":"0024","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:52.105028Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296361} +{"stream":"cohorts","data":{"id":1042,"name":"xsiscpcwg6eqwx","description":"","groups":[{"days":null,"action_id":null,"properties":[{"5fvf":"e4fb8k6kc","7t79":"8oulme","8q1p":"u1sh","c39d":"l9mna87d","jfgh":"jwuw","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:51.878792Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296361} +{"stream":"cohorts","data":{"id":1041,"name":"sj4ep4wyp0wco5","description":"","groups":[{"days":null,"action_id":null,"properties":[{"cl3t":"klxie3","n0es":"h785","uwlv":"5o9i2lti","wmp7":"tx11yrk","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:51.656122Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296362} +{"stream":"cohorts","data":{"id":1040,"name":"0yexcje4hxmn3m","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4jwe":"ew717fsav0","8sgq":"u263","d3ve":"6kusaw7","gkla":"s4vnyxf","v120":"37x9i","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:51.442180Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296362} +{"stream":"cohorts","data":{"id":1039,"name":"29m55ib3bx33vu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"cavi":"7pfdsf","cvql":"r5pint","hnbp":"p8gfv7yer","pqvj":"woku6u77e","ukgo":"shuv9wq01","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:51.229058Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296362} +{"stream":"cohorts","data":{"id":1038,"name":"vsyg82jkm09990","description":"","groups":[{"days":null,"action_id":null,"properties":[{"ardn":"ns50xlkgt","g2fh":"9kq9sksw","go03":"fny79","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:50.658145Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296362} +{"stream":"cohorts","data":{"id":1037,"name":"eovr159w2fw1a0","description":"","groups":[{"days":null,"action_id":null,"properties":[{"60fo":"thv9sin2","asac":"qae9vgqvc7","hh7l":"6lvsn","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:50.441700Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296362} +{"stream":"cohorts","data":{"id":1036,"name":"ado5jdb5uo6b61","description":"","groups":[{"days":null,"action_id":null,"properties":[{"d1f7":"bbffs9cbl","lxfs":"grl5b","qsxq":"ecoixc3m4t","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:50.210264Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296362} +{"stream":"cohorts","data":{"id":1035,"name":"1cei1ydf2t825t","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4gqb":"im2iv","5wl6":"ek10nqcjc","hhk2":"e7hgv5","m5fx":"rdy3ds","wvb7":"cb91","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:49.991139Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296362} +{"stream":"cohorts","data":{"id":1034,"name":"66jchhe8aq7t5r","description":"","groups":[{"days":null,"action_id":null,"properties":[{"cblq":"ncmubr5u","ly9a":"fthm","nfp5":"beywrrs9","vrb0":"ipe2n5xges","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:49.764339Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296363} +{"stream":"cohorts","data":{"id":1033,"name":"mq53skhq27dbik","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3u59":"x8l6","puur":"nl4j1iyxf","v8lj":"8k36","vuoa":"rw717vvsc","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:49.518069Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296363} +{"stream":"cohorts","data":{"id":1032,"name":"mul0n7k526y0md","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1q17":"srg580n","58qy":"q6pogpnsyr","gyqc":"d4u0jo","jc2j":"3ver50md","ug1m":"ye6jxf1p","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:49.292911Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296363} +{"stream":"cohorts","data":{"id":1031,"name":"4onglpp1cmvjyb","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1sh8":"8kajug","bwb7":"w86e","cqtb":"onk88r","pvgu":"fpnol","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:49.064276Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296363} +{"stream":"cohorts","data":{"id":1030,"name":"7da23lj0fvgs1l","description":"","groups":[{"days":null,"action_id":null,"properties":[{"5ivr":"nmhas32x","7rrc":"eirudtyna4","9ftd":"pr4njh5lm1","o7we":"24pn2","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:48.852648Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296363} +{"stream":"cohorts","data":{"id":1029,"name":"9ksb6t0e0uqub5","description":"","groups":[{"days":null,"action_id":null,"properties":[{"a0bs":"6cjvisx","coh8":"o3kl6d9","rc10":"1r2qitlo43","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:48.629178Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296363} +{"stream":"cohorts","data":{"id":1028,"name":"tw55dpj6f70y95","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3loe":"vnj3u91c6d","69gk":"2mv788wx","msps":"qfoytd","uqst":"hujk","xh7y":"fi5pmib","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:48.407089Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296363} +{"stream":"cohorts","data":{"id":1027,"name":"1c17hr86ycac76","description":"","groups":[{"days":null,"action_id":null,"properties":[{"65dq":"72x7u","7t68":"n9bm9sl4","7y7r":"7l79rs","qekr":"yhgn","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:48.188737Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296364} +{"stream":"cohorts","data":{"id":1026,"name":"wgrldiy444861g","description":"","groups":[{"days":null,"action_id":null,"properties":[{"681j":"mpey","k4eo":"irsr9ehysv","yeke":"hhnbygfk","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:47.962450Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296364} +{"stream":"cohorts","data":{"id":1025,"name":"dsj0r846g7r9xq","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8t8c":"ybnhtu","ff80":"yf79","isuk":"yq9j","kghm":"b036","ox5k":"0dfwsifmo","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:47.751859Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296364} +{"stream":"cohorts","data":{"id":1024,"name":"dsihpkgjteqpit","description":"","groups":[{"days":null,"action_id":null,"properties":[{"5xva":"nr7chv7","c886":"fe6n","emov":"wdrwbd","i4ix":"w2nj1","tk43":"hf3bdp","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:47.524201Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296364} +{"stream":"cohorts","data":{"id":1023,"name":"v7eh9qpw9uynvp","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4ojp":"skrrm5d2n","aonn":"1erm6dy","jhxa":"fio7","qgck":"urp9mii","x1j8":"e0kral","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:47.296299Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296364} +{"stream":"cohorts","data":{"id":1022,"name":"fxdxer9k5uur3h","description":"","groups":[{"days":null,"action_id":null,"properties":[{"k2b5":"g3boh3","r2f4":"eovv0o","t9c9":"5odii","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:47.053475Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296364} +{"stream":"cohorts","data":{"id":1021,"name":"oswa8yxoj3kp8d","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0fv0":"bx2y6otn","lavo":"ou72drxued","nxin":"0x0v9xs","rchu":"toapohyt","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:46.819913Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296365} +{"stream":"cohorts","data":{"id":1020,"name":"2g6huxw46msaqy","description":"","groups":[{"days":null,"action_id":null,"properties":[{"9vip":"qksdyses","pxs3":"diyoff","v1a2":"bqb8bwlils","vqhk":"9j4tj6m","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:46.603430Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296365} +{"stream":"cohorts","data":{"id":1019,"name":"htyeqqrid81b67","description":"","groups":[{"days":null,"action_id":null,"properties":[{"57ur":"eyrjmur7f","6jcd":"q07c3c9la","e46b":"oy43h","n4ci":"nsvkp7vvt","rkoo":"o0xsdkxw","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:46.378443Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296365} +{"stream":"cohorts","data":{"id":1018,"name":"q2nb3v35uh1jhy","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3w6b":"hp7by4huhy","5t3u":"8wg1","g8m9":"yn7xhqry6","t4wj":"ud5ebf5isc","ulye":"b83xqthf","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:46.180688Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296365} +{"stream":"cohorts","data":{"id":1017,"name":"h36rt16rk2q08k","description":"","groups":[{"days":null,"action_id":null,"properties":[{"oygp":"17kxbdq","xc9e":"w9wihf","ygr4":"w315qb9mr","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:45.939205Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296365} +{"stream":"cohorts","data":{"id":1016,"name":"adk73suepsbkx1","description":"","groups":[{"days":null,"action_id":null,"properties":[{"9xa5":"f6t2k3r","e051":"ewstx","mwb3":"l4n9gc6ke","y9hf":"60mdjcnf8c","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:45.711967Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296365} +{"stream":"cohorts","data":{"id":1015,"name":"rv4ng9eost1sjr","description":"","groups":[{"days":null,"action_id":null,"properties":[{"b02f":"xnaexmnh","gk0i":"ut3angio","ha5t":"5jdsp6y","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:45.494763Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296365} +{"stream":"cohorts","data":{"id":1014,"name":"8uygpouaovmr7h","description":"","groups":[{"days":null,"action_id":null,"properties":[{"dxyb":"gmq9wms52f","gret":"o9f3oh","kvs2":"hj43u5f3w","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:45.276470Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296366} +{"stream":"cohorts","data":{"id":1013,"name":"dle95ie0s5kodh","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4mmh":"3wd27","7daa":"y3nc","8b0o":"rw51uhec7o","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:45.060897Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296366} +{"stream":"cohorts","data":{"id":1012,"name":"38kesuretu6lke","description":"","groups":[{"days":null,"action_id":null,"properties":[{"568o":"8uf2","9x1q":"rdy1vuyyf","m94b":"hujw4d","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:44.840218Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296366} +{"stream":"cohorts","data":{"id":1011,"name":"nksud3lwvhufx2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"hxjr":"voox8","lmt4":"0qjl1x","xegq":"n72pkjqs","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:44.628224Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296366} +{"stream":"cohorts","data":{"id":1010,"name":"qihqfy8v8karuh","description":"","groups":[{"days":null,"action_id":null,"properties":[{"01ia":"ajjshkp6e5","0dlr":"6r41i9j7","ljt1":"ge0rqxfx","rh3f":"88nkexq3","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:44.409636Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296366} +{"stream":"cohorts","data":{"id":1009,"name":"w6y31rw0lo3re5","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6xh8":"qebnl4jick","9uu1":"sd8dv1","refr":"45tq","t1t5":"bp0b","vp7a":"x045khg8pm","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:44.183547Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296366} +{"stream":"cohorts","data":{"id":1008,"name":"1kv0go9s5h972i","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1se5":"p66u87bm","ifjc":"on3vehk7w","k6lb":"d671","u3ht":"jtipt","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:43.965806Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296366} +{"stream":"cohorts","data":{"id":1007,"name":"ux64ww492u9d37","description":"","groups":[{"days":null,"action_id":null,"properties":[{"40ih":"0b6macrabc","6689":"vydy2b","n1kq":"mahys","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:43.752990Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296367} +{"stream":"cohorts","data":{"id":1006,"name":"4whbmkwos3wyu0","description":"","groups":[{"days":null,"action_id":null,"properties":[{"ayn7":"s0bgda5e1","jxp4":"4m4t4","ko63":"l608yjqc2","sjnu":"erm2","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:43.539149Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296367} +{"stream":"cohorts","data":{"id":1005,"name":"98ebsqi9nwib2g","description":"","groups":[{"days":null,"action_id":null,"properties":[{"46p2":"wgepbpjis","aflj":"5utwg","eblw":"13t0q0os","mm6e":"xea1u3","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:43.327169Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296367} +{"stream":"cohorts","data":{"id":1004,"name":"6170o9y9qdfiqg","description":"","groups":[{"days":null,"action_id":null,"properties":[{"hnco":"xdrdfyp1","jasl":"6def8","koxl":"4xcs1om","ks1b":"gathox1p","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:43.102760Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296367} +{"stream":"cohorts","data":{"id":1003,"name":"jhu1q0h3kaqwum","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4md4":"euua2","l8cu":"82qfs26","n0i9":"drcq3","v7kr":"8efv0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:42.891493Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296367} +{"stream":"cohorts","data":{"id":1002,"name":"d1pmj2942c290l","description":"","groups":[{"days":null,"action_id":null,"properties":[{"curb":"9pgh","kted":"8vc6","l2d7":"iprg","o5ee":"dgie2","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:42.682153Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296367} +{"stream":"cohorts","data":{"id":1001,"name":"gw6ihx443dt1vg","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3slk":"pt2fl","a51p":"ecbtm","uev9":"3edv59clpv","vqwo":"mo7e9k","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:42.465506Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296368} +{"stream":"cohorts","data":{"id":1000,"name":"2mt8lobrrs0e0b","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4vn0":"up2b3","gybt":"nfwu8","uvx4":"e4c7rx2y1","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:42.261682Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296368} +{"stream":"cohorts","data":{"id":999,"name":"6q7rvl2bwv6t8u","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0th9":"knqmnvucu","7ctx":"ct6n5mujpg","hhjg":"ha1x","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:42.033597Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296368} +{"stream":"cohorts","data":{"id":998,"name":"150r3o5gv02iks","description":"","groups":[{"days":null,"action_id":null,"properties":[{"23br":"fbpkwcrtt8","i6dd":"r6jc","je1h":"nmbx1s9k","ly2x":"td1h0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:41.820526Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296368} +{"stream":"cohorts","data":{"id":997,"name":"ekg7u8g9je8u62","description":"","groups":[{"days":null,"action_id":null,"properties":[{"9s7s":"n9jyf6","cxr2":"wvfby4r1i","ogm9":"16napao50","peip":"b4d5et45y","xcxj":"5csna","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:41.607273Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296368} +{"stream":"cohorts","data":{"id":996,"name":"gytua67u6yd8je","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1bfr":"sd5tt","em0q":"kf4we6by","jp0r":"nntf19j","omod":"qfoql","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:41.393344Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296368} +{"stream":"cohorts","data":{"id":995,"name":"5nwabhn8sxgguo","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7vts":"5vf0m","8miv":"w7orn9jc31","ay3t":"454op5","ih0s":"510srh","o9ad":"q603s","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:41.181963Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296368} +{"stream":"cohorts","data":{"id":994,"name":"i22jo62vn328fr","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8m3o":"p6a17l","9p9j":"1lbdhvuo2d","cmqx":"9jm4xye","ms7i":"h7pg8lhj2","r3ia":"1uct8l","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:40.965783Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296369} +{"stream":"cohorts","data":{"id":993,"name":"a6089ejl7tnvpx","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1h5m":"qm4h","3x9f":"h4nf","a7en":"59346e5d","owlt":"36cw","tv75":"6mindjwao0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:40.753547Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296369} +{"stream":"cohorts","data":{"id":992,"name":"2ogp3yxj4omkxo","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2e75":"8h7upce1oo","fwpd":"y291qpou","qtbq":"r9uewnh5","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:40.546199Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296369} +{"stream":"cohorts","data":{"id":991,"name":"h8k0u8mhdxkfdp","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6ffp":"rblf29agd","mqph":"yiipswkfue","vx1x":"eydc","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:40.330283Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296369} +{"stream":"cohorts","data":{"id":990,"name":"fgakvb2f5ea6sv","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7di0":"dmms0","b6m7":"812wapq3f","iw1i":"h8qyd","ko3l":"m35989jf65","mbf4":"9pfp9q","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:40.122246Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296369} +{"stream":"cohorts","data":{"id":989,"name":"i4c7x65hptc105","description":"","groups":[{"days":null,"action_id":null,"properties":[{"bwol":"cp9elc8","f1bc":"pgnd2","fd8n":"f643kokt","pwmg":"m1s4","wu5u":"htjwby63","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:39.897345Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296369} +{"stream":"cohorts","data":{"id":988,"name":"7jyss94au0gx4p","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6okx":"p0tkpe7xtc","7l5k":"4xm9","d0c7":"72cix9udnv","m0oy":"92gj9t","wl0x":"mj0ph","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:39.693290Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296370} +{"stream":"cohorts","data":{"id":987,"name":"tut4aqr6dbhunj","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6r5d":"ps2s","hap8":"ohqs683v01","k8mt":"djn02l","mr4n":"007j5gk2r","pojr":"61xxgqd","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:39.473516Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296370} +{"stream":"cohorts","data":{"id":986,"name":"qjhf6l34r9au59","description":"","groups":[{"days":null,"action_id":null,"properties":[{"37uq":"7xtsp","r9aj":"fwo58a","rke2":"0p0py","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:39.163160Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296370} +{"stream":"cohorts","data":{"id":985,"name":"g6e5j7ji5hnkab","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0axe":"rq84","g6lq":"hadqpkkpf","krjc":"g7q9w","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:38.954931Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296370} +{"stream":"cohorts","data":{"id":984,"name":"n7n6yb0wocicyn","description":"","groups":[{"days":null,"action_id":null,"properties":[{"1ahy":"m08s5wm82","1wyg":"hn5c","7fky":"mmlh450","7ve3":"xjp5wt57","9y5f":"fqx3","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:38.746755Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296370} +{"stream":"cohorts","data":{"id":983,"name":"65ptnkoc7i02gh","description":"","groups":[{"days":null,"action_id":null,"properties":[{"6q2e":"mvjkgx14","eurm":"uebsq0fx","levo":"5uapl88dm","ngum":"gn86tx71","v9yg":"u3vr8jf","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:38.519104Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296370} +{"stream":"cohorts","data":{"id":982,"name":"h4kh9p800pgyvp","description":"","groups":[{"days":null,"action_id":null,"properties":[{"og0k":"jjjfu0e","vkeb":"1n9m","y6h9":"84ua","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:38.304271Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296370} +{"stream":"cohorts","data":{"id":981,"name":"rhixtoio436e1q","description":"","groups":[{"days":null,"action_id":null,"properties":[{"ddqk":"xrb6ns","hccl":"k5t698eb","nqh6":"coua","rgo9":"uyj1n2yit","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:38.100083Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296371} +{"stream":"cohorts","data":{"id":980,"name":"cdvvq71gxfsyh2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8vb8":"i025nxs2t","n2d9":"l8v14bwujd","pwrb":"2r09y1kb3","qxt6":"mdpy","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:37.907481Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296371} +{"stream":"cohorts","data":{"id":979,"name":"iurv42hm1pfrw1","description":"","groups":[{"days":null,"action_id":null,"properties":[{"5jtc":"9fbabq","pqck":"ydkqvrh","rc8i":"gwg01561x0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:37.369571Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296371} +{"stream":"cohorts","data":{"id":978,"name":"q52k5e1yppyrfh","description":"","groups":[{"days":null,"action_id":null,"properties":[{"3vk4":"4ing6fk","g4e7":"52hm90","ht0b":"05q1pm","pet0":"mv18","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:36.806426Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296371} +{"stream":"cohorts","data":{"id":977,"name":"79cij1poiwl183","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0rcg":"aie03iv7","f1cs":"0vo0bh","xgcw":"axhcpy","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:36.596171Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296371} +{"stream":"cohorts","data":{"id":976,"name":"18fum9df088kje","description":"","groups":[{"days":null,"action_id":null,"properties":[{"ba6b":"h6wy4r","d9ck":"qiayrfyps","q0ju":"xh1fthls9","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:36.393916Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296371} +{"stream":"cohorts","data":{"id":975,"name":"2q3gv845oj8qo2","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0qqw":"yo95","c5c3":"g70ila","inn0":"y95l7k","rjwq":"572v","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:36.180729Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296371} +{"stream":"cohorts","data":{"id":974,"name":"d4vfu7c423eui6","description":"","groups":[{"days":null,"action_id":null,"properties":[{"23m7":"2sj09hhp","2jef":"pmnphrf","5i7m":"i7ak","8r7f":"g2sox42","n1iv":"3948jr","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:35.983740Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296372} +{"stream":"cohorts","data":{"id":973,"name":"u1o84gqopj8tr0","description":"","groups":[{"days":null,"action_id":null,"properties":[{"ovs9":"ys3dgnj8","ww0h":"x4yh","y8jk":"450u6w38l2","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:35.373017Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296372} +{"stream":"cohorts","data":{"id":972,"name":"eqit78p7aiq990","description":"","groups":[{"days":null,"action_id":null,"properties":[{"07ve":"bd0gwbkx59","i7ky":"j99d2q","sspv":"rk08tfusb","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:34.770208Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296372} +{"stream":"cohorts","data":{"id":971,"name":"0sa2mtoq1siypj","description":"","groups":[{"days":null,"action_id":null,"properties":[{"c4pr":"70xv3kuyl","m1i7":"d4y7","s3s8":"avqbca9aoe","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:34.236873Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296372} +{"stream":"cohorts","data":{"id":970,"name":"tnnirmlxkemc9w","description":"","groups":[{"days":null,"action_id":null,"properties":[{"135i":"fcyg0","1oud":"761s","j9rf":"lik3s","v14c":"10w2fca","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:33.669583Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296372} +{"stream":"cohorts","data":{"id":969,"name":"g8sfys4rape5c4","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0fi3":"ktwdxtufk","1w4p":"cqyx3ajatq","k2jj":"jb0suby9r","k7cs":"fpki0","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:33.457946Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296373} +{"stream":"cohorts","data":{"id":968,"name":"irpehckaldgp1f","description":"","groups":[{"days":null,"action_id":null,"properties":[{"52b6":"62ejrnw7u5","c90g":"hqd0b","gswj":"6ymv87qp5y","uy6d":"kjefsanay","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:33.251557Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296373} +{"stream":"cohorts","data":{"id":967,"name":"3liq7a0jti4sb4","description":"","groups":[{"days":null,"action_id":null,"properties":[{"19bn":"43ldefdck4","ahfg":"jw39mbvl","dxtl":"yl08","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:33.050521Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296373} +{"stream":"cohorts","data":{"id":966,"name":"rxwh51ihaj8rjb","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7024":"2bfyog","ciqw":"vpw568ci78","lfok":"hupi","loks":"rx3xy96","lvbd":"3uij1","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:32.835630Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296373} +{"stream":"cohorts","data":{"id":965,"name":"ery0slp9yradnh","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2reo":"jum1e65","5036":"f5p6sy9","rc3d":"m213jv76m","yo4n":"mjocbbxig","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:32.638708Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296373} +{"stream":"cohorts","data":{"id":964,"name":"dpj8hwrwjna58r","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2sxm":"vijaw3gi","kod1":"4d9k9p","mhfq":"wgy9dfcw","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:32.377879Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296373} +{"stream":"cohorts","data":{"id":963,"name":"0jjcveuw2i3jfl","description":"","groups":[{"days":null,"action_id":null,"properties":[{"8f5j":"juupxfvg1","lroj":"y8y115r","n7uc":"0iyl75wt","w4a9":"ctnxhf3","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:31.816675Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296373} +{"stream":"cohorts","data":{"id":962,"name":"yal4bgkl0988pr","description":"","groups":[{"days":null,"action_id":null,"properties":[{"7b7m":"39qk","7olx":"1ld28jd","7pl3":"ql0fe","c2f4":"tm90ifi","cruo":"ujr0cjnui","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:31.616419Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296374} +{"stream":"cohorts","data":{"id":961,"name":"difysoga2rpa9j","description":"","groups":[{"days":null,"action_id":null,"properties":[{"md8y":"tof3cm","uwmn":"bi944f5","wiki":"x84ve9de","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:31.437013Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296374} +{"stream":"cohorts","data":{"id":960,"name":"a5v1paijgf5fsh","description":"","groups":[{"days":null,"action_id":null,"properties":[{"afq0":"9p62kdpjdo","o18c":"mfmkes6ex","t6tc":"5k0pdp","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:21:30.833615Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296374} +{"stream":"cohorts","data":{"id":959,"name":"0vbs27iba7od3n","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0om4":"fbsb","0vos":"972rg560qv","rjno":"39kymvnblt","t7tq":"7hrktciuec","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:20:45.774479Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296771} +{"stream":"cohorts","data":{"id":958,"name":"0vbs27iba7od3n","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0om4":"fbsb","0vos":"972rg560qv","rjno":"39kymvnblt","t7tq":"7hrktciuec","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:20:19.597079Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296772} +{"stream":"cohorts","data":{"id":957,"name":"0vbs27iba7od3n","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0om4":"fbsb","0vos":"972rg560qv","rjno":"39kymvnblt","t7tq":"7hrktciuec","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:20:10.966037Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296773} +{"stream":"cohorts","data":{"id":956,"name":"0vbs27iba7od3n","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0om4":"fbsb","0vos":"972rg560qv","rjno":"39kymvnblt","t7tq":"7hrktciuec","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:18:57.621756Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296774} +{"stream":"cohorts","data":{"id":955,"name":"0vbs27iba7od3n","description":"","groups":[{"days":null,"action_id":null,"properties":[{"0om4":"fbsb","0vos":"972rg560qv","rjno":"39kymvnblt","t7tq":"7hrktciuec","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:18:25.745990Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296774} +{"stream":"cohorts","data":{"id":954,"name":"sbvslea8b5o03u","description":"","groups":[{"days":null,"action_id":null,"properties":[{"4boe":"6ratfa97","asoe":"7de43","rug5":"j4n3j522","sk3q":"n5euj9","u3l2":"bdaaudkeoq","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:18:25.230852Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296775} +{"stream":"cohorts","data":{"id":953,"name":"6380h0j717iy22","description":"","groups":[{"days":null,"action_id":null,"properties":[{"2y5d":"wnqf","4mhv":"78r0","cs0p":"oayrnkerk","qcqq":"9vmetyhwp","rdh8":"uslc","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:18:25.059510Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296776} +{"stream":"cohorts","data":{"id":952,"name":"r4ojx89gv9u6lo","description":"","groups":[{"days":null,"action_id":null,"properties":[{"71d9":"n0asgg5u","ccak":"ih9tqw0i2e","ikxt":"xrxu1ep","type":"person"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-28T12:18:24.527579Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296777} +{"stream":"cohorts","data":{"id":951,"name":"m9er8j4x28dsu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"pidr":"is_demo","type":"person","gamno":"whatafucj","operator":"exact_LY"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:11:41.579108Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296777} +{"stream":"cohorts","data":{"id":950,"name":"m9er8j4x28dsu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"pidr":"is_demo","type":"person","gamno":"whatafucj","operator":"exact"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:11:18.912561Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296778} +{"stream":"cohorts","data":{"id":949,"name":"m9er8j4x28dsu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"pidr":"is_demo","type":"person","gamno":["whatafucj"],"operator":"exact"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:11:09.548687Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296779} +{"stream":"cohorts","data":{"id":948,"name":"m9er8j4x28dsu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"pidr":"is_demo","type":"person","gamno":["true"],"operator":"exact"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:10:43.453005Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296779} +{"stream":"cohorts","data":{"id":947,"name":"m9er8j4x28dsu","description":"","groups":[{"days":null,"action_id":null,"properties":[{"key":"is_demo","type":"person","value":["true"],"operator":"exact"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{"type":"AND","values":[{"key":"is_demo","operator":"exact","type":"person","value":["true"]}]}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:10:09.603462Z","last_calculation":"2022-11-11T05:18:00.735674Z","errors_calculating":0,"count":0,"is_static":false},"emitted_at":1668174296780} +{"stream":"cohorts","data":{"id":946,"name":"f8tu19o9l","description":"","groups":[],"deleted":false,"filters":{"properties":{}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:09:30.248150Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296781} +{"stream":"cohorts","data":{"id":945,"name":"o08bnr6","description":"","groups":{},"deleted":false,"filters":{"properties":{}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:08:55.822389Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296782} +{"stream":"cohorts","data":{"id":944,"name":"tpwxyer","description":"","groups":{},"deleted":false,"filters":{"properties":{}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:07:17.594387Z","last_calculation":null,"errors_calculating":1,"count":null,"is_static":false},"emitted_at":1668174296782} +{"stream":"cohorts","data":{"id":943,"name":"qunxrf2l1j41trl","description":"","groups":[{"days":null,"action_id":null,"properties":[{"key":"is_demo","type":"person","value":["true"],"operator":"exact"}]}],"deleted":false,"filters":{"properties":{"type":"OR","values":[{"type":"AND","values":[{"key":"is_demo","operator":"exact","type":"person","value":["true"]}]}]}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:06:22.248873Z","last_calculation":"2022-11-11T12:22:00.503466Z","errors_calculating":0,"count":0,"is_static":false},"emitted_at":1668174296783} +{"stream":"cohorts","data":{"id":942,"name":"ny0gl9137ysc","description":"","groups":{},"deleted":false,"filters":{"properties":{}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T20:06:10.981698Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296784} +{"stream":"cohorts","data":{"id":941,"name":"spte3cplcc","description":"","groups":[],"deleted":false,"filters":{"properties":{}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T19:59:22.496542Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296784} +{"stream":"cohorts","data":{"id":940,"name":"7btwcmm7","description":"","groups":[],"deleted":false,"filters":{"properties":{}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T19:59:18.606281Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296785} +{"stream":"cohorts","data":{"id":939,"name":"bcwaa4f","description":"","groups":[],"deleted":false,"filters":{"properties":{}},"is_calculating":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-27T19:59:03.875702Z","last_calculation":null,"errors_calculating":0,"count":null,"is_static":true},"emitted_at":1668174296785} +{"stream":"events","data":{"id":"017da3dc-c86e-0000-614c-c46e52bd55a4","distinct_id":"17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013","properties":{"$os":"Mac OS X","$browser":"Chrome","$device_type":"Desktop","$current_url":"https://docs.djangoproject.com/en/3.2/topics/cache/","$host":"docs.djangoproject.com","$pathname":"/en/3.2/topics/cache/","$browser_version":96,"$screen_height":900,"$screen_width":1440,"$viewport_height":763,"$viewport_width":1440,"$lib":"web","$lib_version":"1.16.7","$insert_id":"782hv83tr5w1ncd3","$time":1639131695.056,"distinct_id":"17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013","$device_id":"17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013","$search_engine":"google","$initial_referrer":"https://www.google.com/","$initial_referring_domain":"www.google.com","$referrer":"https://www.google.com/","$referring_domain":"www.google.com","token":"r4uy4lgjKEGSkSbUdyr3AydH1R7EYfEtg25A7B58-N0","$session_id":"17da3dcc6f4bcb-0de14f18ab868c-1f396452-13c680-17da3dcc6f5434","$window_id":"17da3dcc6f6b43-0327ba1df55413-1f396452-13c680-17da3dcc6f7bc9","$active_feature_flags":["5mfqpngw","je91wfb4w","moq32y9ws","asi6w9m20a","bm1eei3","8kmkc2sc","2mwamnej","pmmh3nbs","ifjccgejq","y2kvhkw","lvnpk9b","77nla0f1k","c6a4mnwqjs","2dksbge","cvaf1pdi2","4qduxqgw","whb5fcgjq6","rviad0k","32f2rr5h","7cg1qejom","haphmo9b","owb5q00xl","iee88627","locknbl","qo428c6t8j","xj1lao6","7x05bi6prs","3wnpy1u","oowljnt","ke0x5m5","fyplfm2tum","8ou0u2k","nvjo644sxw","741hf66","3k4i3p3rl","bd0b2072","j6wxxjg","2p4w8hf","24c4khfb7","aqxq44q","bd8nnr7k8","ibbhm8un","nouyl94","2br0ms0amp","ksbsy44u","dvao9mvtps","xu1vm9r","3ek6roh","9i1fj773","gmtqysvkm0","iv6h5mk","skr0fbd6","kh7jdw9a82","0jknh2wf","sc6l7b45n4","u09ml7844","5p01u4g6","0n880w8cg","t0f5qki","7y9my7gwks","if7qdb8x","6g89icru","ls7g9ntqsn","r4cfeiie","2v326mwa","8m3p5mh","7bd4f0imj","86mudk1p","jjv08fkfe","33ukhw0d","q95i23m1e","cub8jeeebv","g6dvrab","pcytpo1","uo03r4hov","0p77euok0u","a5slt9f","dry1aoy9","m0scwos","4v8sx3qn","o19yw0uo","fxawv2kja","o1wmm33eq","jfrmhq9","t66hccbo","he35xvacgs","q5fb0busd","i4modv1c8i","um0l0ikv","m4ubuv2ma","afkrev24","523os4kvt","kx9f8vtl0k","tboci0v","1g6gd7qj","3f0knlidw","30x6p6tb","xr1vbf2q3x","p4njeiti","qlyxvix","w04i82n","olggq2yy","oe32jal9","o6g6r40olu","1xu6sjy9h","31r0ain9","2tssq6a8","ktvb8kh48","0m5k4gv","j77xiq5","dutgq5q","825bnh50e4","wl3ha040x","c16y0tky","gwd06fnxge","1ktq3kh5d","ewpmyml79g","5hp4stdsh","yxu752et7","iv0x563mx","gwcdsvfo32","ygym5sm","wtfy1124q","7aiobifr8","dl421eb","82v4h9j3","ja0ihx1wfq","f6hqcwsubc","qylkq21f92","6m47sfye1","i1hn6v3b0","5s4gpcm5v","damh2g7t4u","ohmesxvwe","ojvivrjbvm","1rhmsa5","xv802bv52","ifwp83e0","oekwcgqg","q6hai1qs","ki7qohg","biyklhs","8u4sj6ra","24be92xa","ffdl9a769r","hf0vq08","hkuhavly","lu9eiq5lbj","e892vlnv","8piyt9o3","415120s","rc01148n","17qq56t57","v32l03k7c","y8tch01fkb","e90b12o","1bi0adop","fb6gvy1o14","kif5n4u8p","23y5tw3y1r","68apf6b","pm5813n","7a9wkuwl","3dtjkfsmei","gsae1yuo","p34gj3xw9","fa6q4nlh1","vmcsoug","q54ffm4","sldu49wa","l0m2ndwt","yf8bx1h","5aem1g00p","t6crucp","ouftlr8","jlenoxh","81bvbv9","0mg2e0x10i","45imi44","rs1t3mo6","5w21ume","xf4wx0or","ht8vi293","kl4docu5","dpo5bratw","2if2trjxm","v2ydvg7h94","dc00tek","6qvcx265","53o9v9ra75","vv25xrv","m8jen31h","1exapufqa","du1xs48p2","in3aj38","t4p7veh2","qyxp4qplf","nj5ey0io","p4chmh5bl","uemthjskrg","o9gbxgni1x","fd1htp9","3tkp9acd","vu96ac3u","rll163mtq","8sm0l1nei","876yovb","yxywj7pgv5","0s8ujaj","ifb1c9u0d","1c45w6qh","irax9bvaaaa","qe3qe34","2ofxk9gd","uh08689n","8uom20qcag","4qwiko4wrv","olacaaief","h7sr7k2wy6","p558ha1c14","mtxsmuw1b","c2iox2qfrd","9xgkl81","bgmma1x","j1nuruxs","qpqquifh","smxsxw2qmd","267dobuk","67vuiu1x","9rad2egb3","9i8frwxj6","c63t17n","2c5xjcy","6hf6w2x40","yk2ugua95m","1u7ht7m","1lwtxfssx","gi47pms4","uu4brp0o","5dwc481","uftclrsxvu","jmvi5qn","krl1v9b8yw","91ffxd8s","aje451967","2mt9muihxv","f6ji85dy","k2q6j6hua","7muu15urn","kjx6cbxsm"],"$feature/5mfqpngw":true,"$feature/je91wfb4w":true,"$feature/moq32y9ws":true,"$feature/asi6w9m20a":true,"$feature/bm1eei3":true,"$feature/8kmkc2sc":true,"$feature/2mwamnej":true,"$feature/pmmh3nbs":true,"$feature/ifjccgejq":true,"$feature/y2kvhkw":true,"$feature/lvnpk9b":true,"$feature/77nla0f1k":true,"$feature/c6a4mnwqjs":true,"$feature/2dksbge":true,"$feature/cvaf1pdi2":true,"$feature/4qduxqgw":true,"$feature/whb5fcgjq6":true,"$feature/rviad0k":true,"$feature/32f2rr5h":true,"$feature/7cg1qejom":true,"$feature/haphmo9b":true,"$feature/owb5q00xl":true,"$feature/iee88627":true,"$feature/locknbl":true,"$feature/qo428c6t8j":true,"$feature/xj1lao6":true,"$feature/7x05bi6prs":true,"$feature/3wnpy1u":true,"$feature/oowljnt":true,"$feature/ke0x5m5":true,"$feature/fyplfm2tum":true,"$feature/8ou0u2k":true,"$feature/nvjo644sxw":true,"$feature/741hf66":true,"$feature/3k4i3p3rl":true,"$feature/bd0b2072":true,"$feature/j6wxxjg":true,"$feature/2p4w8hf":true,"$feature/24c4khfb7":true,"$feature/aqxq44q":true,"$feature/bd8nnr7k8":true,"$feature/ibbhm8un":true,"$feature/nouyl94":true,"$feature/2br0ms0amp":true,"$feature/ksbsy44u":true,"$feature/dvao9mvtps":true,"$feature/xu1vm9r":true,"$feature/3ek6roh":true,"$feature/9i1fj773":true,"$feature/gmtqysvkm0":true,"$feature/iv6h5mk":true,"$feature/skr0fbd6":true,"$feature/kh7jdw9a82":true,"$feature/0jknh2wf":true,"$feature/sc6l7b45n4":true,"$feature/u09ml7844":true,"$feature/5p01u4g6":true,"$feature/0n880w8cg":true,"$feature/t0f5qki":true,"$feature/7y9my7gwks":true,"$feature/if7qdb8x":true,"$feature/6g89icru":true,"$feature/ls7g9ntqsn":true,"$feature/r4cfeiie":true,"$feature/2v326mwa":true,"$feature/8m3p5mh":true,"$feature/7bd4f0imj":true,"$feature/86mudk1p":true,"$feature/jjv08fkfe":true,"$feature/33ukhw0d":true,"$feature/q95i23m1e":true,"$feature/cub8jeeebv":true,"$feature/g6dvrab":true,"$feature/pcytpo1":true,"$feature/uo03r4hov":true,"$feature/0p77euok0u":true,"$feature/a5slt9f":true,"$feature/dry1aoy9":true,"$feature/m0scwos":true,"$feature/4v8sx3qn":true,"$feature/o19yw0uo":true,"$feature/fxawv2kja":true,"$feature/o1wmm33eq":true,"$feature/jfrmhq9":true,"$feature/t66hccbo":true,"$feature/he35xvacgs":true,"$feature/q5fb0busd":true,"$feature/i4modv1c8i":true,"$feature/um0l0ikv":true,"$feature/m4ubuv2ma":true,"$feature/afkrev24":true,"$feature/523os4kvt":true,"$feature/kx9f8vtl0k":true,"$feature/tboci0v":true,"$feature/1g6gd7qj":true,"$feature/3f0knlidw":true,"$feature/30x6p6tb":true,"$feature/xr1vbf2q3x":true,"$feature/p4njeiti":true,"$feature/qlyxvix":true,"$feature/w04i82n":true,"$feature/olggq2yy":true,"$feature/oe32jal9":true,"$feature/o6g6r40olu":true,"$feature/1xu6sjy9h":true,"$feature/31r0ain9":true,"$feature/2tssq6a8":true,"$feature/ktvb8kh48":true,"$feature/0m5k4gv":true,"$feature/j77xiq5":true,"$feature/dutgq5q":true,"$feature/825bnh50e4":true,"$feature/wl3ha040x":true,"$feature/c16y0tky":true,"$feature/gwd06fnxge":true,"$feature/1ktq3kh5d":true,"$feature/ewpmyml79g":true,"$feature/5hp4stdsh":true,"$feature/yxu752et7":true,"$feature/iv0x563mx":true,"$feature/gwcdsvfo32":true,"$feature/ygym5sm":true,"$feature/wtfy1124q":true,"$feature/7aiobifr8":true,"$feature/dl421eb":true,"$feature/82v4h9j3":true,"$feature/ja0ihx1wfq":true,"$feature/f6hqcwsubc":true,"$feature/qylkq21f92":true,"$feature/6m47sfye1":true,"$feature/i1hn6v3b0":true,"$feature/5s4gpcm5v":true,"$feature/damh2g7t4u":true,"$feature/ohmesxvwe":true,"$feature/ojvivrjbvm":true,"$feature/1rhmsa5":true,"$feature/xv802bv52":true,"$feature/ifwp83e0":true,"$feature/oekwcgqg":true,"$feature/q6hai1qs":true,"$feature/ki7qohg":true,"$feature/biyklhs":true,"$feature/8u4sj6ra":true,"$feature/24be92xa":true,"$feature/ffdl9a769r":true,"$feature/hf0vq08":true,"$feature/hkuhavly":true,"$feature/lu9eiq5lbj":true,"$feature/e892vlnv":true,"$feature/8piyt9o3":true,"$feature/415120s":true,"$feature/rc01148n":true,"$feature/17qq56t57":true,"$feature/v32l03k7c":true,"$feature/y8tch01fkb":true,"$feature/e90b12o":true,"$feature/1bi0adop":true,"$feature/fb6gvy1o14":true,"$feature/kif5n4u8p":true,"$feature/23y5tw3y1r":true,"$feature/68apf6b":true,"$feature/pm5813n":true,"$feature/7a9wkuwl":true,"$feature/3dtjkfsmei":true,"$feature/gsae1yuo":true,"$feature/p34gj3xw9":true,"$feature/fa6q4nlh1":true,"$feature/vmcsoug":true,"$feature/q54ffm4":true,"$feature/sldu49wa":true,"$feature/l0m2ndwt":true,"$feature/yf8bx1h":true,"$feature/5aem1g00p":true,"$feature/t6crucp":true,"$feature/ouftlr8":true,"$feature/jlenoxh":true,"$feature/81bvbv9":true,"$feature/0mg2e0x10i":true,"$feature/45imi44":true,"$feature/rs1t3mo6":true,"$feature/5w21ume":true,"$feature/xf4wx0or":true,"$feature/ht8vi293":true,"$feature/kl4docu5":true,"$feature/dpo5bratw":true,"$feature/2if2trjxm":true,"$feature/v2ydvg7h94":true,"$feature/dc00tek":true,"$feature/6qvcx265":true,"$feature/53o9v9ra75":true,"$feature/vv25xrv":true,"$feature/m8jen31h":true,"$feature/1exapufqa":true,"$feature/du1xs48p2":true,"$feature/in3aj38":true,"$feature/t4p7veh2":true,"$feature/qyxp4qplf":true,"$feature/nj5ey0io":true,"$feature/p4chmh5bl":true,"$feature/uemthjskrg":true,"$feature/o9gbxgni1x":true,"$feature/fd1htp9":true,"$feature/3tkp9acd":true,"$feature/vu96ac3u":true,"$feature/rll163mtq":true,"$feature/8sm0l1nei":true,"$feature/876yovb":true,"$feature/yxywj7pgv5":true,"$feature/0s8ujaj":true,"$feature/ifb1c9u0d":true,"$feature/1c45w6qh":true,"$feature/irax9bvaaaa":true,"$feature/qe3qe34":true,"$feature/2ofxk9gd":true,"$feature/uh08689n":true,"$feature/8uom20qcag":true,"$feature/4qwiko4wrv":true,"$feature/olacaaief":true,"$feature/h7sr7k2wy6":true,"$feature/p558ha1c14":true,"$feature/mtxsmuw1b":true,"$feature/c2iox2qfrd":true,"$feature/9xgkl81":true,"$feature/bgmma1x":true,"$feature/j1nuruxs":true,"$feature/qpqquifh":true,"$feature/smxsxw2qmd":true,"$feature/267dobuk":true,"$feature/67vuiu1x":true,"$feature/9rad2egb3":true,"$feature/9i8frwxj6":true,"$feature/c63t17n":true,"$feature/2c5xjcy":true,"$feature/6hf6w2x40":true,"$feature/yk2ugua95m":true,"$feature/1u7ht7m":true,"$feature/1lwtxfssx":true,"$feature/gi47pms4":true,"$feature/uu4brp0o":true,"$feature/5dwc481":true,"$feature/uftclrsxvu":true,"$feature/jmvi5qn":true,"$feature/krl1v9b8yw":true,"$feature/91ffxd8s":true,"$feature/aje451967":true,"$feature/2mt9muihxv":true,"$feature/f6ji85dy":true,"$feature/k2q6j6hua":true,"$feature/7muu15urn":true,"$feature/kjx6cbxsm":true,"$set_once":{"$initial_os":"Mac OS X","$initial_browser":"Chrome","$initial_device_type":"Desktop","$initial_current_url":"https://docs.djangoproject.com/en/3.2/topics/cache/","$initial_browser_version":96,"$initial_referrer":"https://www.google.com/","$initial_referring_domain":"www.google.com"}},"event":"$pageleave","timestamp":"2021-12-10T10:21:35.208000+00:00","person":{"is_identified":false,"distinct_ids":["17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013"],"properties":{}},"elements":[],"elements_chain":""},"emitted_at":1668174298523} +{"stream":"events","data":{"id":"017da3dc-c79f-0000-ea26-17349f1e7dd8","distinct_id":"17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013","properties":{"$os":"Mac OS X","$browser":"Chrome","$device_type":"Desktop","$current_url":"https://docs.djangoproject.com/en/3.2/topics/cache/","$host":"docs.djangoproject.com","$pathname":"/en/3.2/topics/cache/","$browser_version":96,"$screen_height":900,"$screen_width":1440,"$viewport_height":763,"$viewport_width":1440,"$lib":"web","$lib_version":"1.16.7","$insert_id":"e7cr62borfphvkqc","$time":1639131694.841,"distinct_id":"17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013","$device_id":"17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013","$search_engine":"google","$initial_referrer":"https://www.google.com/","$initial_referring_domain":"www.google.com","$referrer":"https://www.google.com/","$referring_domain":"www.google.com","token":"r4uy4lgjKEGSkSbUdyr3AydH1R7EYfEtg25A7B58-N0","$session_id":"17da3dcc6f4bcb-0de14f18ab868c-1f396452-13c680-17da3dcc6f5434","$window_id":"17da3dcc6f6b43-0327ba1df55413-1f396452-13c680-17da3dcc6f7bc9","$active_feature_flags":["5mfqpngw","je91wfb4w","moq32y9ws","asi6w9m20a","bm1eei3","8kmkc2sc","2mwamnej","pmmh3nbs","ifjccgejq","y2kvhkw","lvnpk9b","77nla0f1k","c6a4mnwqjs","2dksbge","cvaf1pdi2","4qduxqgw","whb5fcgjq6","rviad0k","32f2rr5h","7cg1qejom","haphmo9b","owb5q00xl","iee88627","locknbl","qo428c6t8j","xj1lao6","7x05bi6prs","3wnpy1u","oowljnt","ke0x5m5","fyplfm2tum","8ou0u2k","nvjo644sxw","741hf66","3k4i3p3rl","bd0b2072","j6wxxjg","2p4w8hf","24c4khfb7","aqxq44q","bd8nnr7k8","ibbhm8un","nouyl94","2br0ms0amp","ksbsy44u","dvao9mvtps","xu1vm9r","3ek6roh","9i1fj773","gmtqysvkm0","iv6h5mk","skr0fbd6","kh7jdw9a82","0jknh2wf","sc6l7b45n4","u09ml7844","5p01u4g6","0n880w8cg","t0f5qki","7y9my7gwks","if7qdb8x","6g89icru","ls7g9ntqsn","r4cfeiie","2v326mwa","8m3p5mh","7bd4f0imj","86mudk1p","jjv08fkfe","33ukhw0d","q95i23m1e","cub8jeeebv","g6dvrab","pcytpo1","uo03r4hov","0p77euok0u","a5slt9f","dry1aoy9","m0scwos","4v8sx3qn","o19yw0uo","fxawv2kja","o1wmm33eq","jfrmhq9","t66hccbo","he35xvacgs","q5fb0busd","i4modv1c8i","um0l0ikv","m4ubuv2ma","afkrev24","523os4kvt","kx9f8vtl0k","tboci0v","1g6gd7qj","3f0knlidw","30x6p6tb","xr1vbf2q3x","p4njeiti","qlyxvix","w04i82n","olggq2yy","oe32jal9","o6g6r40olu","1xu6sjy9h","31r0ain9","2tssq6a8","ktvb8kh48","0m5k4gv","j77xiq5","dutgq5q","825bnh50e4","wl3ha040x","c16y0tky","gwd06fnxge","1ktq3kh5d","ewpmyml79g","5hp4stdsh","yxu752et7","iv0x563mx","gwcdsvfo32","ygym5sm","wtfy1124q","7aiobifr8","dl421eb","82v4h9j3","ja0ihx1wfq","f6hqcwsubc","qylkq21f92","6m47sfye1","i1hn6v3b0","5s4gpcm5v","damh2g7t4u","ohmesxvwe","ojvivrjbvm","1rhmsa5","xv802bv52","ifwp83e0","oekwcgqg","q6hai1qs","ki7qohg","biyklhs","8u4sj6ra","24be92xa","ffdl9a769r","hf0vq08","hkuhavly","lu9eiq5lbj","e892vlnv","8piyt9o3","415120s","rc01148n","17qq56t57","v32l03k7c","y8tch01fkb","e90b12o","1bi0adop","fb6gvy1o14","kif5n4u8p","23y5tw3y1r","68apf6b","pm5813n","7a9wkuwl","3dtjkfsmei","gsae1yuo","p34gj3xw9","fa6q4nlh1","vmcsoug","q54ffm4","sldu49wa","l0m2ndwt","yf8bx1h","5aem1g00p","t6crucp","ouftlr8","jlenoxh","81bvbv9","0mg2e0x10i","45imi44","rs1t3mo6","5w21ume","xf4wx0or","ht8vi293","kl4docu5","dpo5bratw","2if2trjxm","v2ydvg7h94","dc00tek","6qvcx265","53o9v9ra75","vv25xrv","m8jen31h","1exapufqa","du1xs48p2","in3aj38","t4p7veh2","qyxp4qplf","nj5ey0io","p4chmh5bl","uemthjskrg","o9gbxgni1x","fd1htp9","3tkp9acd","vu96ac3u","rll163mtq","8sm0l1nei","876yovb","yxywj7pgv5","0s8ujaj","ifb1c9u0d","1c45w6qh","irax9bvaaaa","qe3qe34","2ofxk9gd","uh08689n","8uom20qcag","4qwiko4wrv","olacaaief","h7sr7k2wy6","p558ha1c14","mtxsmuw1b","c2iox2qfrd","9xgkl81","bgmma1x","j1nuruxs","qpqquifh","smxsxw2qmd","267dobuk","67vuiu1x","9rad2egb3","9i8frwxj6","c63t17n","2c5xjcy","6hf6w2x40","yk2ugua95m","1u7ht7m","1lwtxfssx","gi47pms4","uu4brp0o","5dwc481","uftclrsxvu","jmvi5qn","krl1v9b8yw","91ffxd8s","aje451967","2mt9muihxv","f6ji85dy","k2q6j6hua","7muu15urn","kjx6cbxsm"],"$feature/5mfqpngw":true,"$feature/je91wfb4w":true,"$feature/moq32y9ws":true,"$feature/asi6w9m20a":true,"$feature/bm1eei3":true,"$feature/8kmkc2sc":true,"$feature/2mwamnej":true,"$feature/pmmh3nbs":true,"$feature/ifjccgejq":true,"$feature/y2kvhkw":true,"$feature/lvnpk9b":true,"$feature/77nla0f1k":true,"$feature/c6a4mnwqjs":true,"$feature/2dksbge":true,"$feature/cvaf1pdi2":true,"$feature/4qduxqgw":true,"$feature/whb5fcgjq6":true,"$feature/rviad0k":true,"$feature/32f2rr5h":true,"$feature/7cg1qejom":true,"$feature/haphmo9b":true,"$feature/owb5q00xl":true,"$feature/iee88627":true,"$feature/locknbl":true,"$feature/qo428c6t8j":true,"$feature/xj1lao6":true,"$feature/7x05bi6prs":true,"$feature/3wnpy1u":true,"$feature/oowljnt":true,"$feature/ke0x5m5":true,"$feature/fyplfm2tum":true,"$feature/8ou0u2k":true,"$feature/nvjo644sxw":true,"$feature/741hf66":true,"$feature/3k4i3p3rl":true,"$feature/bd0b2072":true,"$feature/j6wxxjg":true,"$feature/2p4w8hf":true,"$feature/24c4khfb7":true,"$feature/aqxq44q":true,"$feature/bd8nnr7k8":true,"$feature/ibbhm8un":true,"$feature/nouyl94":true,"$feature/2br0ms0amp":true,"$feature/ksbsy44u":true,"$feature/dvao9mvtps":true,"$feature/xu1vm9r":true,"$feature/3ek6roh":true,"$feature/9i1fj773":true,"$feature/gmtqysvkm0":true,"$feature/iv6h5mk":true,"$feature/skr0fbd6":true,"$feature/kh7jdw9a82":true,"$feature/0jknh2wf":true,"$feature/sc6l7b45n4":true,"$feature/u09ml7844":true,"$feature/5p01u4g6":true,"$feature/0n880w8cg":true,"$feature/t0f5qki":true,"$feature/7y9my7gwks":true,"$feature/if7qdb8x":true,"$feature/6g89icru":true,"$feature/ls7g9ntqsn":true,"$feature/r4cfeiie":true,"$feature/2v326mwa":true,"$feature/8m3p5mh":true,"$feature/7bd4f0imj":true,"$feature/86mudk1p":true,"$feature/jjv08fkfe":true,"$feature/33ukhw0d":true,"$feature/q95i23m1e":true,"$feature/cub8jeeebv":true,"$feature/g6dvrab":true,"$feature/pcytpo1":true,"$feature/uo03r4hov":true,"$feature/0p77euok0u":true,"$feature/a5slt9f":true,"$feature/dry1aoy9":true,"$feature/m0scwos":true,"$feature/4v8sx3qn":true,"$feature/o19yw0uo":true,"$feature/fxawv2kja":true,"$feature/o1wmm33eq":true,"$feature/jfrmhq9":true,"$feature/t66hccbo":true,"$feature/he35xvacgs":true,"$feature/q5fb0busd":true,"$feature/i4modv1c8i":true,"$feature/um0l0ikv":true,"$feature/m4ubuv2ma":true,"$feature/afkrev24":true,"$feature/523os4kvt":true,"$feature/kx9f8vtl0k":true,"$feature/tboci0v":true,"$feature/1g6gd7qj":true,"$feature/3f0knlidw":true,"$feature/30x6p6tb":true,"$feature/xr1vbf2q3x":true,"$feature/p4njeiti":true,"$feature/qlyxvix":true,"$feature/w04i82n":true,"$feature/olggq2yy":true,"$feature/oe32jal9":true,"$feature/o6g6r40olu":true,"$feature/1xu6sjy9h":true,"$feature/31r0ain9":true,"$feature/2tssq6a8":true,"$feature/ktvb8kh48":true,"$feature/0m5k4gv":true,"$feature/j77xiq5":true,"$feature/dutgq5q":true,"$feature/825bnh50e4":true,"$feature/wl3ha040x":true,"$feature/c16y0tky":true,"$feature/gwd06fnxge":true,"$feature/1ktq3kh5d":true,"$feature/ewpmyml79g":true,"$feature/5hp4stdsh":true,"$feature/yxu752et7":true,"$feature/iv0x563mx":true,"$feature/gwcdsvfo32":true,"$feature/ygym5sm":true,"$feature/wtfy1124q":true,"$feature/7aiobifr8":true,"$feature/dl421eb":true,"$feature/82v4h9j3":true,"$feature/ja0ihx1wfq":true,"$feature/f6hqcwsubc":true,"$feature/qylkq21f92":true,"$feature/6m47sfye1":true,"$feature/i1hn6v3b0":true,"$feature/5s4gpcm5v":true,"$feature/damh2g7t4u":true,"$feature/ohmesxvwe":true,"$feature/ojvivrjbvm":true,"$feature/1rhmsa5":true,"$feature/xv802bv52":true,"$feature/ifwp83e0":true,"$feature/oekwcgqg":true,"$feature/q6hai1qs":true,"$feature/ki7qohg":true,"$feature/biyklhs":true,"$feature/8u4sj6ra":true,"$feature/24be92xa":true,"$feature/ffdl9a769r":true,"$feature/hf0vq08":true,"$feature/hkuhavly":true,"$feature/lu9eiq5lbj":true,"$feature/e892vlnv":true,"$feature/8piyt9o3":true,"$feature/415120s":true,"$feature/rc01148n":true,"$feature/17qq56t57":true,"$feature/v32l03k7c":true,"$feature/y8tch01fkb":true,"$feature/e90b12o":true,"$feature/1bi0adop":true,"$feature/fb6gvy1o14":true,"$feature/kif5n4u8p":true,"$feature/23y5tw3y1r":true,"$feature/68apf6b":true,"$feature/pm5813n":true,"$feature/7a9wkuwl":true,"$feature/3dtjkfsmei":true,"$feature/gsae1yuo":true,"$feature/p34gj3xw9":true,"$feature/fa6q4nlh1":true,"$feature/vmcsoug":true,"$feature/q54ffm4":true,"$feature/sldu49wa":true,"$feature/l0m2ndwt":true,"$feature/yf8bx1h":true,"$feature/5aem1g00p":true,"$feature/t6crucp":true,"$feature/ouftlr8":true,"$feature/jlenoxh":true,"$feature/81bvbv9":true,"$feature/0mg2e0x10i":true,"$feature/45imi44":true,"$feature/rs1t3mo6":true,"$feature/5w21ume":true,"$feature/xf4wx0or":true,"$feature/ht8vi293":true,"$feature/kl4docu5":true,"$feature/dpo5bratw":true,"$feature/2if2trjxm":true,"$feature/v2ydvg7h94":true,"$feature/dc00tek":true,"$feature/6qvcx265":true,"$feature/53o9v9ra75":true,"$feature/vv25xrv":true,"$feature/m8jen31h":true,"$feature/1exapufqa":true,"$feature/du1xs48p2":true,"$feature/in3aj38":true,"$feature/t4p7veh2":true,"$feature/qyxp4qplf":true,"$feature/nj5ey0io":true,"$feature/p4chmh5bl":true,"$feature/uemthjskrg":true,"$feature/o9gbxgni1x":true,"$feature/fd1htp9":true,"$feature/3tkp9acd":true,"$feature/vu96ac3u":true,"$feature/rll163mtq":true,"$feature/8sm0l1nei":true,"$feature/876yovb":true,"$feature/yxywj7pgv5":true,"$feature/0s8ujaj":true,"$feature/ifb1c9u0d":true,"$feature/1c45w6qh":true,"$feature/irax9bvaaaa":true,"$feature/qe3qe34":true,"$feature/2ofxk9gd":true,"$feature/uh08689n":true,"$feature/8uom20qcag":true,"$feature/4qwiko4wrv":true,"$feature/olacaaief":true,"$feature/h7sr7k2wy6":true,"$feature/p558ha1c14":true,"$feature/mtxsmuw1b":true,"$feature/c2iox2qfrd":true,"$feature/9xgkl81":true,"$feature/bgmma1x":true,"$feature/j1nuruxs":true,"$feature/qpqquifh":true,"$feature/smxsxw2qmd":true,"$feature/267dobuk":true,"$feature/67vuiu1x":true,"$feature/9rad2egb3":true,"$feature/9i8frwxj6":true,"$feature/c63t17n":true,"$feature/2c5xjcy":true,"$feature/6hf6w2x40":true,"$feature/yk2ugua95m":true,"$feature/1u7ht7m":true,"$feature/1lwtxfssx":true,"$feature/gi47pms4":true,"$feature/uu4brp0o":true,"$feature/5dwc481":true,"$feature/uftclrsxvu":true,"$feature/jmvi5qn":true,"$feature/krl1v9b8yw":true,"$feature/91ffxd8s":true,"$feature/aje451967":true,"$feature/2mt9muihxv":true,"$feature/f6ji85dy":true,"$feature/k2q6j6hua":true,"$feature/7muu15urn":true,"$feature/kjx6cbxsm":true,"$set_once":{"$initial_os":"Mac OS X","$initial_browser":"Chrome","$initial_device_type":"Desktop","$initial_current_url":"https://docs.djangoproject.com/en/3.2/topics/cache/","$initial_browser_version":96,"$initial_referrer":"https://www.google.com/","$initial_referring_domain":"www.google.com"}},"event":"$pageview","timestamp":"2021-12-10T10:21:35.003000+00:00","person":{"is_identified":false,"distinct_ids":["17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013"],"properties":{}},"elements":[],"elements_chain":""},"emitted_at":1668174298539} +{"stream":"feature_flags","data":{"id":708,"name":"8n0n6gh","key":"l6nauvtt","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:41.064107Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300661} +{"stream":"feature_flags","data":{"id":707,"name":"wpvw3i9","key":"irax9bvaaaa","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:40.739194Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300672} +{"stream":"feature_flags","data":{"id":706,"name":"xxotapa","key":"kjx6cbxsm","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:40.416474Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300672} +{"stream":"feature_flags","data":{"id":705,"name":"citlsu6wa4","key":"81bvbv9","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:40.076337Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300672} +{"stream":"feature_flags","data":{"id":704,"name":"gt5oaye","key":"8sm0l1nei","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:39.747742Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300672} +{"stream":"feature_flags","data":{"id":703,"name":"tu97j8rm","key":"9rad2egb3","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:39.444464Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300673} +{"stream":"feature_flags","data":{"id":702,"name":"fny9dw28","key":"rs1t3mo6","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:39.093440Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300673} +{"stream":"feature_flags","data":{"id":701,"name":"hitba6c","key":"7muu15urn","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:38.784929Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300673} +{"stream":"feature_flags","data":{"id":700,"name":"65ao0bur1","key":"k2q6j6hua","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:38.461205Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300673} +{"stream":"feature_flags","data":{"id":699,"name":"7hqhtijr5d","key":"jlenoxh","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:38.143283Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300673} +{"stream":"feature_flags","data":{"id":698,"name":"dklf9wpnia","key":"f6ji85dy","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:37.806544Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300673} +{"stream":"feature_flags","data":{"id":697,"name":"4g1ny14","key":"2mt9muihxv","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:37.488599Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300673} +{"stream":"feature_flags","data":{"id":696,"name":"sov1ee7","key":"aje451967","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:37.178735Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300674} +{"stream":"feature_flags","data":{"id":695,"name":"utonbomba","key":"5dwc481","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:36.868093Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300674} +{"stream":"feature_flags","data":{"id":694,"name":"q2hlewwf1f","key":"91ffxd8s","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:36.532372Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300674} +{"stream":"feature_flags","data":{"id":693,"name":"i13kk5sq4","key":"4qwiko4wrv","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:36.197025Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300674} +{"stream":"feature_flags","data":{"id":692,"name":"qv2qv1l7wo","key":"1exapufqa","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:35.836418Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300674} +{"stream":"feature_flags","data":{"id":691,"name":"icroevymmo","key":"m8jen31h","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:35.492638Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300674} +{"stream":"feature_flags","data":{"id":690,"name":"2kpqrpoo3","key":"krl1v9b8yw","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:35.146894Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300674} +{"stream":"feature_flags","data":{"id":689,"name":"vstvcv4x","key":"xf4wx0or","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:34.814434Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300675} +{"stream":"feature_flags","data":{"id":688,"name":"krrh8nh","key":"dpo5bratw","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:34.483386Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300675} +{"stream":"feature_flags","data":{"id":687,"name":"ld4fog89a","key":"ouftlr8","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:34.164171Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300675} +{"stream":"feature_flags","data":{"id":686,"name":"pqh58w1sf","key":"o9gbxgni1x","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:33.884968Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300675} +{"stream":"feature_flags","data":{"id":685,"name":"f47nmuk","key":"vv25xrv","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:33.512067Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300675} +{"stream":"feature_flags","data":{"id":684,"name":"72mepq4uc","key":"uu4brp0o","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:33.195460Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300675} +{"stream":"feature_flags","data":{"id":683,"name":"numqjrbr9s","key":"uemthjskrg","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:32.889135Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300676} +{"stream":"feature_flags","data":{"id":682,"name":"dts3eqp00","key":"kl4docu5","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:32.542035Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300676} +{"stream":"feature_flags","data":{"id":681,"name":"urt32jpk","key":"t6crucp","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:32.237675Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300676} +{"stream":"feature_flags","data":{"id":680,"name":"g9ld806d","key":"gi47pms4","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:31.922743Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300676} +{"stream":"feature_flags","data":{"id":679,"name":"giydddxuw","key":"jmvi5qn","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:31.606991Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300676} +{"stream":"feature_flags","data":{"id":678,"name":"iqqavn6","key":"rll163mtq","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:31.277997Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300676} +{"stream":"feature_flags","data":{"id":677,"name":"4vs9ilkrb","key":"uftclrsxvu","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:30.960772Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300676} +{"stream":"feature_flags","data":{"id":676,"name":"2xuy3nge7v","key":"1lwtxfssx","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:30.640884Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300677} +{"stream":"feature_flags","data":{"id":675,"name":"7ix5ckldn","key":"1u7ht7m","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:30.314099Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300677} +{"stream":"feature_flags","data":{"id":674,"name":"poxsm1mqsc","key":"53o9v9ra75","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:30.000418Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300677} +{"stream":"feature_flags","data":{"id":673,"name":"r39bm162","key":"yk2ugua95m","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:29.692368Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300677} +{"stream":"feature_flags","data":{"id":672,"name":"11jcskq5","key":"qpqquifh","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:29.358586Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300677} +{"stream":"feature_flags","data":{"id":671,"name":"h44rw8fi","key":"9xgkl81","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:29.058440Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300677} +{"stream":"feature_flags","data":{"id":670,"name":"vs07s1y","key":"6hf6w2x40","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:28.749886Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300677} +{"stream":"feature_flags","data":{"id":669,"name":"6016rsbgwy","key":"2c5xjcy","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:28.441285Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300678} +{"stream":"feature_flags","data":{"id":668,"name":"e3pkeq3n3b","key":"c63t17n","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:28.072174Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300678} +{"stream":"feature_flags","data":{"id":667,"name":"d23289v9","key":"9i8frwxj6","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:27.765494Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300678} +{"stream":"feature_flags","data":{"id":666,"name":"0el1sm95","key":"67vuiu1x","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:27.421899Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300678} +{"stream":"feature_flags","data":{"id":665,"name":"p0prw0gd","key":"267dobuk","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:27.067462Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300678} +{"stream":"feature_flags","data":{"id":664,"name":"j494rbk2bb","key":"45imi44","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:26.750322Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300678} +{"stream":"feature_flags","data":{"id":663,"name":"rkh5h1e3o","key":"smxsxw2qmd","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:26.462026Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300678} +{"stream":"feature_flags","data":{"id":662,"name":"gcgt7c2","key":"c2iox2qfrd","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:26.133730Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300679} +{"stream":"feature_flags","data":{"id":661,"name":"nsnd72hg8","key":"j1nuruxs","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:25.805066Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300679} +{"stream":"feature_flags","data":{"id":660,"name":"skn5w2j","key":"p4chmh5bl","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:25.501996Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300679} +{"stream":"feature_flags","data":{"id":659,"name":"s1ie77f1","key":"8uom20qcag","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:25.189876Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300679} +{"stream":"feature_flags","data":{"id":658,"name":"kgv6dvnm1","key":"bgmma1x","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:24.868878Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300679} +{"stream":"feature_flags","data":{"id":657,"name":"fw5ijxfkx","key":"mtxsmuw1b","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:24.553910Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300679} +{"stream":"feature_flags","data":{"id":656,"name":"ixnldai","key":"nj5ey0io","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:24.268196Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300679} +{"stream":"feature_flags","data":{"id":655,"name":"c7t4yn1kqd","key":"p558ha1c14","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:23.914304Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300680} +{"stream":"feature_flags","data":{"id":654,"name":"nhij5e812","key":"qyxp4qplf","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:23.612018Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300680} +{"stream":"feature_flags","data":{"id":653,"name":"hxre3ltyqj","key":"vu96ac3u","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:23.309713Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300680} +{"stream":"feature_flags","data":{"id":652,"name":"w71bn2e5e","key":"h7sr7k2wy6","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:22.986727Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300680} +{"stream":"feature_flags","data":{"id":651,"name":"qh4x2q32a6","key":"olacaaief","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:22.687719Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300680} +{"stream":"feature_flags","data":{"id":650,"name":"l8uo4f9","key":"uh08689n","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:22.379824Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300680} +{"stream":"feature_flags","data":{"id":649,"name":"1rf413rh","key":"1c45w6qh","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:22.078911Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300680} +{"stream":"feature_flags","data":{"id":648,"name":"mlytr5jsb","key":"3tkp9acd","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:21.766865Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300681} +{"stream":"feature_flags","data":{"id":647,"name":"4j6tklovkg","key":"2ofxk9gd","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:21.467388Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300681} +{"stream":"feature_flags","data":{"id":646,"name":"nl3g8i6jx","key":"qe3qe34","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:21.143174Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300681} +{"stream":"feature_flags","data":{"id":645,"name":"y1yq3w3","key":"ifb1c9u0d","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:20.830723Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300681} +{"stream":"feature_flags","data":{"id":644,"name":"fwbvbxsgr","key":"0s8ujaj","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:20.533843Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300681} +{"stream":"feature_flags","data":{"id":643,"name":"pr1pj7klje","key":"yxywj7pgv5","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:20.225088Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300681} +{"stream":"feature_flags","data":{"id":642,"name":"10cim4q","key":"dc00tek","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:19.901723Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300681} +{"stream":"feature_flags","data":{"id":641,"name":"aum57ea","key":"876yovb","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:19.603122Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300682} +{"stream":"feature_flags","data":{"id":640,"name":"yiearf0q","key":"fd1htp9","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:19.309029Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300682} +{"stream":"feature_flags","data":{"id":639,"name":"v8x7mdd","key":"t4p7veh2","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:19.004901Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300682} +{"stream":"feature_flags","data":{"id":638,"name":"lynwtmeynt","key":"in3aj38","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:18.696302Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300682} +{"stream":"feature_flags","data":{"id":637,"name":"4vaqahltpb","key":"du1xs48p2","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:18.398626Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300682} +{"stream":"feature_flags","data":{"id":636,"name":"bretqnx3","key":"6qvcx265","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:18.112480Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300682} +{"stream":"feature_flags","data":{"id":635,"name":"bhdljve9w","key":"v2ydvg7h94","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:17.785270Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300682} +{"stream":"feature_flags","data":{"id":634,"name":"s8s47ucqx","key":"2if2trjxm","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:17.489813Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300683} +{"stream":"feature_flags","data":{"id":633,"name":"d01nguk","key":"ht8vi293","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:17.193729Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300683} +{"stream":"feature_flags","data":{"id":632,"name":"816set1ta","key":"5w21ume","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:16.919694Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300683} +{"stream":"feature_flags","data":{"id":631,"name":"duscj819pw","key":"0mg2e0x10i","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:16.600753Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300683} +{"stream":"feature_flags","data":{"id":630,"name":"59um35csv","key":"5aem1g00p","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:16.308158Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300683} +{"stream":"feature_flags","data":{"id":629,"name":"0p76ctm1p","key":"yf8bx1h","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:16.021504Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300683} +{"stream":"feature_flags","data":{"id":628,"name":"3irm37g0vt","key":"l0m2ndwt","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:15.719590Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300683} +{"stream":"feature_flags","data":{"id":627,"name":"hi6jrra2","key":"sldu49wa","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:15.438885Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300684} +{"stream":"feature_flags","data":{"id":626,"name":"orem7eem1","key":"q54ffm4","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:15.161497Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300684} +{"stream":"feature_flags","data":{"id":625,"name":"7b26vuij0","key":"vmcsoug","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:14.776815Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300684} +{"stream":"feature_flags","data":{"id":624,"name":"2nkgowf","key":"fa6q4nlh1","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:14.490286Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300684} +{"stream":"feature_flags","data":{"id":623,"name":"00qkw5ck9o","key":"p34gj3xw9","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:14.206566Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300684} +{"stream":"feature_flags","data":{"id":622,"name":"k2fclguog","key":"gsae1yuo","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:13.898439Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300684} +{"stream":"feature_flags","data":{"id":621,"name":"umktl6rd","key":"3dtjkfsmei","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:13.607217Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300684} +{"stream":"feature_flags","data":{"id":620,"name":"085jl1fbq","key":"7a9wkuwl","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:13.339022Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300685} +{"stream":"feature_flags","data":{"id":619,"name":"7ydg8stg14","key":"pm5813n","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:13.033394Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300685} +{"stream":"feature_flags","data":{"id":618,"name":"1ogdcedin8","key":"68apf6b","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:12.739180Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300685} +{"stream":"feature_flags","data":{"id":617,"name":"78u84ug","key":"23y5tw3y1r","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:12.432954Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300685} +{"stream":"feature_flags","data":{"id":616,"name":"7forpvb","key":"kif5n4u8p","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:12.129473Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300685} +{"stream":"feature_flags","data":{"id":615,"name":"jd6nq0e","key":"fb6gvy1o14","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:11.808525Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300685} +{"stream":"feature_flags","data":{"id":614,"name":"i2q6dl1","key":"1bi0adop","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:11.504214Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300685} +{"stream":"feature_flags","data":{"id":613,"name":"tee6972","key":"e90b12o","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:11.194245Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300686} +{"stream":"feature_flags","data":{"id":612,"name":"3n866q93gd","key":"y8tch01fkb","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:10.826053Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300686} +{"stream":"feature_flags","data":{"id":611,"name":"by6fe9dgef","key":"v32l03k7c","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:10.505062Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300686} +{"stream":"feature_flags","data":{"id":610,"name":"1xdbmb5q2s","key":"17qq56t57","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:10.168062Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300686} +{"stream":"feature_flags","data":{"id":609,"name":"xblbgjf","key":"rc01148n","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:09.881147Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174300686} +{"stream":"feature_flags","data":{"id":608,"name":"vsg9doms8","key":"415120s","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:09.592169Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301077} +{"stream":"feature_flags","data":{"id":607,"name":"1ifaxh5qv","key":"8piyt9o3","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:09.315344Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301078} +{"stream":"feature_flags","data":{"id":606,"name":"9unirro","key":"e892vlnv","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:09.028420Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301079} +{"stream":"feature_flags","data":{"id":605,"name":"jslk4pc","key":"lu9eiq5lbj","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:08.740570Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301079} +{"stream":"feature_flags","data":{"id":604,"name":"u6kes2mahf","key":"hkuhavly","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:08.471193Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301080} +{"stream":"feature_flags","data":{"id":603,"name":"po4nm2v","key":"hf0vq08","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:08.190239Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301080} +{"stream":"feature_flags","data":{"id":602,"name":"y7oah0c4","key":"ffdl9a769r","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:07.912793Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301081} +{"stream":"feature_flags","data":{"id":601,"name":"1qpdbiitlr","key":"24be92xa","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:07.641397Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301081} +{"stream":"feature_flags","data":{"id":600,"name":"d61ci0csaj","key":"8u4sj6ra","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:07.368734Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301082} +{"stream":"feature_flags","data":{"id":599,"name":"5nb9mup","key":"biyklhs","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:07.097987Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301082} +{"stream":"feature_flags","data":{"id":598,"name":"6915lyi4c","key":"ki7qohg","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:06.836948Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301083} +{"stream":"feature_flags","data":{"id":597,"name":"y456n7slpk","key":"q6hai1qs","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:06.541967Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301083} +{"stream":"feature_flags","data":{"id":596,"name":"qwbyilhg9","key":"oekwcgqg","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:06.285045Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301084} +{"stream":"feature_flags","data":{"id":595,"name":"3lfej2ypg","key":"ifwp83e0","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:06.006499Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301084} +{"stream":"feature_flags","data":{"id":594,"name":"kpl22ivx","key":"xv802bv52","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:05.710435Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301085} +{"stream":"feature_flags","data":{"id":593,"name":"luoko5une","key":"1rhmsa5","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:05.437949Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301085} +{"stream":"feature_flags","data":{"id":592,"name":"s74i3m6","key":"ojvivrjbvm","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:05.164732Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301086} +{"stream":"feature_flags","data":{"id":591,"name":"96renr3","key":"ohmesxvwe","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:04.898505Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301086} +{"stream":"feature_flags","data":{"id":590,"name":"dcmyapd","key":"damh2g7t4u","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:04.639115Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301087} +{"stream":"feature_flags","data":{"id":589,"name":"972b7n7j","key":"5s4gpcm5v","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:04.354127Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301087} +{"stream":"feature_flags","data":{"id":588,"name":"n2o2l9b","key":"i1hn6v3b0","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:04.072079Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301088} +{"stream":"feature_flags","data":{"id":587,"name":"tu0b6u28","key":"6m47sfye1","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:03.767849Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301088} +{"stream":"feature_flags","data":{"id":586,"name":"tp8vxm1eva","key":"qylkq21f92","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:03.436261Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301089} +{"stream":"feature_flags","data":{"id":585,"name":"efryg8xy","key":"f6hqcwsubc","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:03.156017Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301089} +{"stream":"feature_flags","data":{"id":584,"name":"drs5i3y56","key":"ja0ihx1wfq","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:02.879267Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301090} +{"stream":"feature_flags","data":{"id":583,"name":"dbrcan4c3","key":"82v4h9j3","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:02.617668Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301090} +{"stream":"feature_flags","data":{"id":582,"name":"9hfm07wnf","key":"dl421eb","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:02.352073Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301091} +{"stream":"feature_flags","data":{"id":581,"name":"t6l93tq7l","key":"7aiobifr8","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:02.103552Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301091} +{"stream":"feature_flags","data":{"id":580,"name":"qpbtj9fh","key":"wtfy1124q","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:01.824573Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301092} +{"stream":"feature_flags","data":{"id":579,"name":"j2oae448","key":"ygym5sm","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:01.587672Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301092} +{"stream":"feature_flags","data":{"id":578,"name":"t0y9qjor","key":"gwcdsvfo32","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:01.314706Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301093} +{"stream":"feature_flags","data":{"id":577,"name":"rkxc1tps","key":"iv0x563mx","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:01.054248Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301093} +{"stream":"feature_flags","data":{"id":576,"name":"992j01xq2g","key":"yxu752et7","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:00.786247Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301094} +{"stream":"feature_flags","data":{"id":575,"name":"iqmjldtp6a","key":"5hp4stdsh","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:00.521343Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301094} +{"stream":"feature_flags","data":{"id":574,"name":"4navi78g","key":"ewpmyml79g","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:00.269860Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301094} +{"stream":"feature_flags","data":{"id":573,"name":"1q99297","key":"1ktq3kh5d","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:37:00.007211Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301095} +{"stream":"feature_flags","data":{"id":572,"name":"x1mdw5gcn","key":"gwd06fnxge","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:59.750077Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301095} +{"stream":"feature_flags","data":{"id":571,"name":"s64s4o64en","key":"c16y0tky","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:59.496163Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301095} +{"stream":"feature_flags","data":{"id":570,"name":"f0nj2br","key":"wl3ha040x","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:59.247177Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301096} +{"stream":"feature_flags","data":{"id":569,"name":"h3qbfg6","key":"825bnh50e4","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:58.989815Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301096} +{"stream":"feature_flags","data":{"id":568,"name":"p3g5qbi3k","key":"dutgq5q","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:58.737334Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301097} +{"stream":"feature_flags","data":{"id":567,"name":"97tnd93erg","key":"j77xiq5","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:58.484835Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301097} +{"stream":"feature_flags","data":{"id":566,"name":"d6ltvd1","key":"0m5k4gv","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:58.257979Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301097} +{"stream":"feature_flags","data":{"id":565,"name":"2wlexbhjuj","key":"ktvb8kh48","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:57.975537Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301098} +{"stream":"feature_flags","data":{"id":564,"name":"4c73sm3n","key":"2tssq6a8","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:57.738637Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301098} +{"stream":"feature_flags","data":{"id":563,"name":"bns5so707","key":"31r0ain9","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:57.489499Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301098} +{"stream":"feature_flags","data":{"id":562,"name":"fy479ffw","key":"1xu6sjy9h","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:57.225269Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301099} +{"stream":"feature_flags","data":{"id":561,"name":"374ylt5w5","key":"o6g6r40olu","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:56.986003Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301099} +{"stream":"feature_flags","data":{"id":560,"name":"0a15iuqchq","key":"oe32jal9","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:56.725852Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301099} +{"stream":"feature_flags","data":{"id":559,"name":"2i34q2d9y","key":"olggq2yy","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:56.486176Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301099} +{"stream":"feature_flags","data":{"id":558,"name":"b7xx70xnd","key":"w04i82n","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:56.221004Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301100} +{"stream":"feature_flags","data":{"id":557,"name":"r92qsyu2i","key":"qlyxvix","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:55.964407Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301100} +{"stream":"feature_flags","data":{"id":556,"name":"j7wt1t4g9k","key":"p4njeiti","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:55.724968Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301100} +{"stream":"feature_flags","data":{"id":555,"name":"lxbwhqs","key":"xr1vbf2q3x","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:55.476729Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301101} +{"stream":"feature_flags","data":{"id":554,"name":"ys8a732rap","key":"30x6p6tb","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:55.233444Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301101} +{"stream":"feature_flags","data":{"id":553,"name":"f5x2q5pjo","key":"3f0knlidw","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:55.001516Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301101} +{"stream":"feature_flags","data":{"id":552,"name":"1ku6gucx","key":"1g6gd7qj","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:54.752306Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301102} +{"stream":"feature_flags","data":{"id":551,"name":"fumfwxq","key":"tboci0v","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:54.518968Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301102} +{"stream":"feature_flags","data":{"id":550,"name":"uvaxcbuk0l","key":"kx9f8vtl0k","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:54.273208Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301102} +{"stream":"feature_flags","data":{"id":549,"name":"srrxdsbx","key":"523os4kvt","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:54.033930Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301102} +{"stream":"feature_flags","data":{"id":548,"name":"p8l73e019y","key":"afkrev24","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:53.793076Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301103} +{"stream":"feature_flags","data":{"id":547,"name":"cydg2s4","key":"m4ubuv2ma","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:53.559697Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301103} +{"stream":"feature_flags","data":{"id":546,"name":"fn7j319d","key":"um0l0ikv","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:53.318436Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301103} +{"stream":"feature_flags","data":{"id":545,"name":"1d6x3c9","key":"i4modv1c8i","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:53.085281Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301103} +{"stream":"feature_flags","data":{"id":544,"name":"ttiri30","key":"q5fb0busd","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:52.842853Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301104} +{"stream":"feature_flags","data":{"id":543,"name":"kiuw872u5","key":"he35xvacgs","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:52.609314Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301104} +{"stream":"feature_flags","data":{"id":542,"name":"sxkf4eodq","key":"0n880w8cg","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:52.377044Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301104} +{"stream":"feature_flags","data":{"id":541,"name":"vyummc0ux","key":"5p01u4g6","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:52.148748Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301104} +{"stream":"feature_flags","data":{"id":540,"name":"ftfgmtxbk7","key":"t66hccbo","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:51.923354Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301105} +{"stream":"feature_flags","data":{"id":539,"name":"55m570b","key":"jfrmhq9","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:51.692560Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301105} +{"stream":"feature_flags","data":{"id":538,"name":"htv85n4m78","key":"o19yw0uo","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:51.462723Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301105} +{"stream":"feature_flags","data":{"id":537,"name":"tjjki0r3","key":"oowljnt","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:51.228866Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301105} +{"stream":"feature_flags","data":{"id":536,"name":"lx9y4kvkm","key":"o1wmm33eq","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:50.998451Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301106} +{"stream":"feature_flags","data":{"id":535,"name":"1r748t4r","key":"u09ml7844","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:50.769990Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301106} +{"stream":"feature_flags","data":{"id":534,"name":"w8nqrrs","key":"fxawv2kja","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:50.540444Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301106} +{"stream":"feature_flags","data":{"id":533,"name":"7x78ma9soq","key":"4v8sx3qn","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:50.311872Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301106} +{"stream":"feature_flags","data":{"id":532,"name":"dramci35","key":"m0scwos","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:50.080488Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301107} +{"stream":"feature_flags","data":{"id":531,"name":"8thhs5u","key":"cub8jeeebv","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:49.860767Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301107} +{"stream":"feature_flags","data":{"id":530,"name":"h0t7s6l","key":"dry1aoy9","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:49.625148Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301107} +{"stream":"feature_flags","data":{"id":529,"name":"ay6xd75q","key":"sc6l7b45n4","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:49.409958Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301107} +{"stream":"feature_flags","data":{"id":528,"name":"ctog0tv","key":"a5slt9f","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:49.180384Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301108} +{"stream":"feature_flags","data":{"id":527,"name":"sj0j9bj41","key":"3wnpy1u","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:48.959127Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301108} +{"stream":"feature_flags","data":{"id":526,"name":"r2sqldyy","key":"r4cfeiie","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:48.729444Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301108} +{"stream":"feature_flags","data":{"id":525,"name":"v7i2ohuts","key":"0jknh2wf","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:48.532891Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301108} +{"stream":"feature_flags","data":{"id":524,"name":"pek7kc9","key":"0p77euok0u","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:48.285472Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301109} +{"stream":"feature_flags","data":{"id":523,"name":"2r04euvunb","key":"uo03r4hov","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:48.062675Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301109} +{"stream":"feature_flags","data":{"id":522,"name":"fis8ns15e","key":"kh7jdw9a82","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:47.844240Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301109} +{"stream":"feature_flags","data":{"id":521,"name":"6xm0lkdpo","key":"7x05bi6prs","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:47.628945Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301109} +{"stream":"feature_flags","data":{"id":520,"name":"6nnsq98","key":"pcytpo1","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:47.415431Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301109} +{"stream":"feature_flags","data":{"id":519,"name":"ud20qdf","key":"xj1lao6","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:47.191248Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301110} +{"stream":"feature_flags","data":{"id":518,"name":"1j1ghgnhkg","key":"g6dvrab","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:46.976133Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301110} +{"stream":"feature_flags","data":{"id":517,"name":"e1hutwbji","key":"q95i23m1e","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:46.760258Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301110} +{"stream":"feature_flags","data":{"id":516,"name":"b40u07dwmv","key":"33ukhw0d","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:46.536483Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301110} +{"stream":"feature_flags","data":{"id":515,"name":"3tvqhip","key":"skr0fbd6","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:46.323695Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301110} +{"stream":"feature_flags","data":{"id":514,"name":"bldcuw8q","key":"jjv08fkfe","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:46.107441Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301111} +{"stream":"feature_flags","data":{"id":513,"name":"eirpg1oy8","key":"86mudk1p","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:45.894202Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301111} +{"stream":"feature_flags","data":{"id":512,"name":"r3qj9x8dug","key":"7bd4f0imj","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:45.685124Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301111} +{"stream":"feature_flags","data":{"id":511,"name":"w4fvimt8","key":"qo428c6t8j","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:45.474742Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301111} +{"stream":"feature_flags","data":{"id":510,"name":"rmrw64en2","key":"8m3p5mh","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:45.268588Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301111} +{"stream":"feature_flags","data":{"id":509,"name":"etqd0vnbh2","key":"ls7g9ntqsn","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:45.081209Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301112} +{"stream":"feature_flags","data":{"id":508,"name":"yh4obul","key":"iv6h5mk","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:00.329560Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301396} +{"stream":"feature_flags","data":{"id":507,"name":"0uidfjx74","key":"2v326mwa","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:36:00.117620Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301397} +{"stream":"feature_flags","data":{"id":506,"name":"prxxhn6ftf","key":"gmtqysvkm0","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:59.905648Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301398} +{"stream":"feature_flags","data":{"id":505,"name":"d76c2h5w","key":"6g89icru","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:59.711083Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301398} +{"stream":"feature_flags","data":{"id":504,"name":"of1r3rku","key":"if7qdb8x","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:59.149215Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301399} +{"stream":"feature_flags","data":{"id":503,"name":"j1c9p72","key":"9i1fj773","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:58.938440Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301400} +{"stream":"feature_flags","data":{"id":502,"name":"p4tu68280c","key":"7y9my7gwks","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:58.725911Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301400} +{"stream":"feature_flags","data":{"id":501,"name":"bw4bgxn","key":"t0f5qki","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:58.528197Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301401} +{"stream":"feature_flags","data":{"id":500,"name":"hs6snsanbo","key":"3ek6roh","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:58.305976Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301402} +{"stream":"feature_flags","data":{"id":499,"name":"ub0herk1","key":"741hf66","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:58.094043Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301402} +{"stream":"feature_flags","data":{"id":498,"name":"eoumaf5","key":"xu1vm9r","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:57.898166Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301403} +{"stream":"feature_flags","data":{"id":497,"name":"ntked3va1","key":"dvao9mvtps","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:57.700917Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301404} +{"stream":"feature_flags","data":{"id":496,"name":"t4x7c5gyvq","key":"nvjo644sxw","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:57.466803Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301404} +{"stream":"feature_flags","data":{"id":495,"name":"n2tlpmi","key":"ksbsy44u","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:57.253289Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301404} +{"stream":"feature_flags","data":{"id":494,"name":"r3gqi6qk","key":"2br0ms0amp","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:57.049205Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301405} +{"stream":"feature_flags","data":{"id":493,"name":"0qo8y7d2g","key":"nouyl94","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:56.836683Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301405} +{"stream":"feature_flags","data":{"id":492,"name":"qa7ybtom","key":"locknbl","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:56.625256Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301406} +{"stream":"feature_flags","data":{"id":491,"name":"ww3afta","key":"ibbhm8un","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:56.418067Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301406} +{"stream":"feature_flags","data":{"id":490,"name":"e7d40s4","key":"bd8nnr7k8","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:56.213307Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301407} +{"stream":"feature_flags","data":{"id":489,"name":"ps9dy1467k","key":"aqxq44q","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:55.981313Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301407} +{"stream":"feature_flags","data":{"id":488,"name":"y1wukbgh8a","key":"24c4khfb7","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:55.768190Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301408} +{"stream":"feature_flags","data":{"id":487,"name":"lxn8st2l1","key":"2p4w8hf","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:55.561242Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301408} +{"stream":"feature_flags","data":{"id":486,"name":"pip4nan","key":"j6wxxjg","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:55.357807Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301409} +{"stream":"feature_flags","data":{"id":485,"name":"a5k8u6d2hd","key":"bd0b2072","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:55.125056Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301409} +{"stream":"feature_flags","data":{"id":484,"name":"jxtvc8snge","key":"3k4i3p3rl","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:54.914463Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301409} +{"stream":"feature_flags","data":{"id":483,"name":"0xmir0bei","key":"8ou0u2k","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:54.701820Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301410} +{"stream":"feature_flags","data":{"id":482,"name":"em7ug1ti","key":"fyplfm2tum","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:54.463814Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301410} +{"stream":"feature_flags","data":{"id":481,"name":"cx134lwh8","key":"ke0x5m5","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:53.883592Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301410} +{"stream":"feature_flags","data":{"id":480,"name":"x5mx2cf","key":"iee88627","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:53.686511Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301411} +{"stream":"feature_flags","data":{"id":479,"name":"htulq6s76","key":"owb5q00xl","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:53.432738Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301411} +{"stream":"feature_flags","data":{"id":478,"name":"d7s056ydos","key":"haphmo9b","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:52.873732Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301411} +{"stream":"feature_flags","data":{"id":477,"name":"x8cjg279uv","key":"7cg1qejom","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:52.132338Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301412} +{"stream":"feature_flags","data":{"id":476,"name":"sv4tulml","key":"32f2rr5h","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:51.891097Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301412} +{"stream":"feature_flags","data":{"id":475,"name":"p8tgob7o","key":"rviad0k","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:51.682175Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301412} +{"stream":"feature_flags","data":{"id":474,"name":"yeb2b54","key":"whb5fcgjq6","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:51.469357Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301413} +{"stream":"feature_flags","data":{"id":473,"name":"bjc92wwtsy","key":"4qduxqgw","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:51.258449Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301413} +{"stream":"feature_flags","data":{"id":472,"name":"ija3skpw6k","key":"cvaf1pdi2","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:51.062015Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301413} +{"stream":"feature_flags","data":{"id":471,"name":"15as07oa4q","key":"2dksbge","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:50.856511Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301414} +{"stream":"feature_flags","data":{"id":470,"name":"jt52le78q","key":"c6a4mnwqjs","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:50.308850Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301414} +{"stream":"feature_flags","data":{"id":469,"name":"0lp1gqb","key":"asi6w9m20a","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:49.744180Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301414} +{"stream":"feature_flags","data":{"id":468,"name":"mhfuif41g","key":"77nla0f1k","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:49.567349Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301415} +{"stream":"feature_flags","data":{"id":467,"name":"769maq57nc","key":"y2kvhkw","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:48.959257Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301415} +{"stream":"feature_flags","data":{"id":466,"name":"nlwly56","key":"moq32y9ws","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:48.418034Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301415} +{"stream":"feature_flags","data":{"id":465,"name":"d2o89c5rf","key":"ifjccgejq","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:47.830065Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301415} +{"stream":"feature_flags","data":{"id":464,"name":"wfqy7u0y","key":"pmmh3nbs","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:47.656959Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301416} +{"stream":"feature_flags","data":{"id":463,"name":"n0dhg7wut","key":"8kmkc2sc","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:47.085137Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301416} +{"stream":"feature_flags","data":{"id":462,"name":"hatecs9rnv","key":"je91wfb4w","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:46.860258Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301416} +{"stream":"feature_flags","data":{"id":461,"name":"ff4xdtm","key":"lvnpk9b","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:46.659807Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301417} +{"stream":"feature_flags","data":{"id":460,"name":"560p96ks","key":"2mwamnej","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:46.065366Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301417} +{"stream":"feature_flags","data":{"id":459,"name":"v6jkssa","key":"bm1eei3","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:35:45.519027Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301417} +{"stream":"feature_flags","data":{"id":458,"name":"yrt8crhhp","key":"5mfqpngw","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":true,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-05-26T19:33:45.692880Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301417} +{"stream":"feature_flags","data":{"id":313,"name":"test description","key":"test_flag_1","filters":{"groups":[{"properties":[],"rollout_percentage":null}]},"deleted":false,"active":false,"created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"created_at":"2021-04-13T18:21:31.843900Z","is_simple_flag":true,"rollout_percentage":null,"ensure_experience_continuity":false,"experiment_set":[],"rollback_conditions":null,"performed_rollback":null},"emitted_at":1668174301418} +{"stream":"persons","data":{"type":"person","id":"017da3dc-c8c8-0000-45d3-e15472f45235","uuid":"017da3dc-c8c8-0000-45d3-e15472f45235","created_at":"2021-12-10T10:21:35.057000Z","properties":{"$initial_os":"Mac OS X","$initial_browser":"Chrome","$initial_referrer":"https://www.google.com/","$initial_current_url":"https://docs.djangoproject.com/en/3.2/topics/cache/","$initial_device_type":"Desktop","$initial_browser_version":96,"$initial_referring_domain":"www.google.com"},"is_identified":false,"name":"17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013","distinct_ids":["17da3dc938e536-003c59e154bb5e-1f396452-13c680-17da3dc938f1013"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303112} +{"stream":"persons","data":{"type":"person","id":"017ac66b-8894-0000-5207-7604b47e39b2","uuid":"017ac66b-8894-0000-5207-7604b47e39b2","created_at":"2021-07-21T00:16:13.987000Z","properties":{},"is_identified":false,"name":"user","distinct_ids":["user"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303113} +{"stream":"persons","data":{"type":"person","id":"017ac664-22d0-0000-6d29-6229db4f9613","uuid":"017ac664-22d0-0000-6d29-6229db4f9613","created_at":"2021-07-21T00:08:09.176000Z","properties":{},"is_identified":false,"name":"distinct id2","distinct_ids":["distinct id2"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303113} +{"stream":"persons","data":{"type":"person","id":"017ac664-2288-0000-3ad8-e9abb4bd4cb2","uuid":"017ac664-2288-0000-3ad8-e9abb4bd4cb2","created_at":"2021-07-21T00:08:09.096000Z","properties":{"name":"Dwayne Johnson","email":"dwayne@gmail.com"},"is_identified":true,"name":"dwayne@gmail.com","distinct_ids":["unique id2"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303113} +{"stream":"persons","data":{"type":"person","id":"017ac664-2265-0000-1421-ad141713e92f","uuid":"017ac664-2265-0000-1421-ad141713e92f","created_at":"2021-07-21T00:08:09.070000Z","properties":{},"is_identified":false,"name":"another id2","distinct_ids":["another id2"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303113} +{"stream":"persons","data":{"type":"person","id":"017ac663-968c-0000-5540-cc2db1672d13","uuid":"017ac663-968c-0000-5540-cc2db1672d13","created_at":"2021-07-21T00:07:33.271000Z","properties":{},"is_identified":false,"name":"another id","distinct_ids":["another id"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303113} +{"stream":"persons","data":{"type":"person","id":"017ac663-9679-0000-3514-a00f6d6b27ab","uuid":"017ac663-9679-0000-3514-a00f6d6b27ab","created_at":"2021-07-21T00:07:33.241000Z","properties":{"name":"Dwayne Johnson","email":"dwayne@gmail.com"},"is_identified":true,"name":"dwayne@gmail.com","distinct_ids":["unique id"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303113} +{"stream":"persons","data":{"type":"person","id":"017ac5fc-1714-0000-4bb6-9af9828d3f79","uuid":"017ac5fc-1714-0000-4bb6-9af9828d3f79","created_at":"2021-07-20T22:14:30.420000Z","properties":{},"is_identified":false,"name":"456","distinct_ids":["456","123"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303113} +{"stream":"persons","data":{"type":"person","id":"017a8791-5886-0000-21e9-94e274ce565a","uuid":"017a8791-5886-0000-21e9-94e274ce565a","created_at":"2021-07-08T19:21:26.753000Z","properties":{},"is_identified":false,"name":"17a87914063726-04fa48b8999b1a-34667600-13c680-17a879140648ff","distinct_ids":["17a87914063726-04fa48b8999b1a-34667600-13c680-17a879140648ff"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303114} +{"stream":"persons","data":{"type":"person","id":"0179d5b4-adae-0000-b242-f25a7f8b0737","uuid":"0179d5b4-adae-0000-b242-f25a7f8b0737","created_at":"2021-06-04T06:27:38.245000Z","properties":{"test_property":"value_value_value"},"is_identified":false,"name":"179d5b499bb39d-02a0262552e365-37627201-13c680-179d5b499bc890","distinct_ids":["179d5b499bb39d-02a0262552e365-37627201-13c680-179d5b499bc890"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303114} +{"stream":"persons","data":{"type":"person","id":"0179c65b-2f14-0000-43fc-d852f30457c2","uuid":"0179c65b-2f14-0000-43fc-d852f30457c2","created_at":"2021-06-01T06:55:34.699000Z","properties":{"cccccccccccccc":"test123"},"is_identified":false,"name":"179c65b20e11aa-0b19f35914e7d1-192e1a0c-c0000-179c65b20e23ac","distinct_ids":["179c65b20e11aa-0b19f35914e7d1-192e1a0c-c0000-179c65b20e23ac"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303114} +{"stream":"persons","data":{"type":"person","id":"0179c1b2-bf7d-0000-4e84-673434c58f95","uuid":"0179c1b2-bf7d-0000-4e84-673434c58f95","created_at":"2021-05-31T09:13:07.098000Z","properties":{},"is_identified":false,"name":"179c1b2b121ae-01a102c6f438cb-5a103418-15f900-179c1b2b1221dc","distinct_ids":["179c1b2b121ae-01a102c6f438cb-5a103418-15f900-179c1b2b1221dc"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303114} +{"stream":"persons","data":{"type":"person","id":"0179b3d3-e444-0000-c47e-c226b8032eed","uuid":"0179b3d3-e444-0000-c47e-c226b8032eed","created_at":"2021-05-28T16:34:38.815000Z","properties":{},"is_identified":false,"name":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","distinct_ids":["EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303114} +{"stream":"persons","data":{"type":"person","id":"0178cc70-ba15-0001-0699-f75a61ab9b38","uuid":"0178cc70-ba15-0001-0699-f75a61ab9b38","created_at":"2021-04-13T18:14:03.040000Z","properties":{"test_property":"TestValue"},"is_identified":false,"name":"distinct id","distinct_ids":["distinct id"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303114} +{"stream":"persons","data":{"type":"person","id":"0178cc70-93de-0000-9839-0aae2d0dbbe4","uuid":"0178cc70-93de-0000-9839-0aae2d0dbbe4","created_at":"2021-04-13T18:13:53.269000Z","properties":{},"is_identified":false,"name":"test-id","distinct_ids":["test-id"],"matched_recordings":[],"value_at_data_point":null},"emitted_at":1668174303114} +{"stream":"insights","data":{"id":205996,"short_id":"9o_cFL2H","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-05-31T05:27:47.887033Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.062043Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.062043Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304962} +{"stream":"insights","data":{"id":263466,"short_id":"KCwD5SGW","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-07-05T19:59:13.817347Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.049140Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.049140Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304966} +{"stream":"insights","data":{"id":570524,"short_id":"9iwuflbR","name":"Cuddly Albatross","derived_name":null,"filters":{"events":[{"id":"$pageview","name":"$pageview","type":"events","order":0}],"actions":[],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","properties":[],"filter_test_accounts":false,"date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-12-24T09:05:30.437252Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":"","updated_at":"2021-12-24T09:05:30.437295Z","favorited":false,"saved":false,"last_modified_at":"2021-12-24T09:05:30.437295Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304967} +{"stream":"insights","data":{"id":163767,"short_id":"IyuSr3Un","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T18:23:09.082604Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.148867Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.148867Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304967} +{"stream":"insights","data":{"id":163730,"short_id":"RdvihEsl","name":"Sample - Purchase conversion funnel","derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null},{"id":"$autocapture","math":null,"name":"Clicked purchase button","type":"events","order":1,"properties":[{"key":"$event_type","type":"event","value":"click","operator":null},{"key":"text","type":"element","value":"Purchase","operator":null}],"math_property":null},{"id":"$autocapture","math":null,"name":"Submitted checkout form","type":"events","order":2,"properties":[{"key":"$event_type","type":"event","value":"submit","operator":null},{"key":"$pathname","type":"event","value":"/purchase","operator":null}],"math_property":null},{"id":"Order Completed","math":null,"name":"Order Completed","type":"events","order":3,"properties":[],"math_property":null}],"display":"FunnelViz","insight":"FUNNELS","interval":"day","date_from":"-7d"},"filters_hash":"cache_1f9053dca24058ae6da515b82f734347","order":null,"deleted":false,"dashboards":[3075],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T17:38:09.884051Z","created_by":null,"description":"This is a sample of how a user funnel could look like. It represents the number of users that performed a specific action at each step.","updated_at":"2022-09-13T08:08:58.638507Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.830499Z","last_modified_by":null,"is_sample":true,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304968} +{"stream":"insights","data":{"id":163727,"short_id":"UPUM0_6G","name":"Weekly revenue (from Order Completed)","derived_name":null,"filters":{"events":[{"id":"Order Completed","math":"sum","name":"Order Completed","type":"events","order":null,"properties":[],"math_property":"revenue"}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"week","date_from":"-60d"},"filters_hash":"cache_66780a364e57c9959ff2956c0c88630e","order":null,"deleted":false,"dashboards":[3075],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T17:38:09.875006Z","created_by":null,"description":"Shows how much revenue your app is capturing from orders every week. Sales should be registered with an \"Order Completed\" event.","updated_at":"2022-09-13T08:08:58.610912Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.039318Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304970} +{"stream":"insights","data":{"id":163731,"short_id":"wCibiwPl","name":"Users by browser (last 2 weeks)","derived_name":null,"filters":{"events":[{"id":"$pageview","math":"dau","name":"$pageview","type":"events","order":null,"properties":[],"math_property":null}],"display":"ActionsPie","insight":"TRENDS","interval":"day","breakdown":"$browser","date_from":"-14d","breakdown_type":"person"},"filters_hash":"cache_e2571aee2afa7ca5dad0006c4b7ad378","order":null,"deleted":false,"dashboards":[3075],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T17:38:09.886951Z","created_by":null,"description":"Shows a breakdown of browsers used to visit your app per unique users in the last 14 days.","updated_at":"2022-09-13T08:08:58.592997Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.952456Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304970} +{"stream":"insights","data":{"id":163732,"short_id":"HGO0gzz0","name":"Users by traffic source","derived_name":null,"filters":{"events":[{"id":"$pageview","math":"dau","name":"$pageview","type":"events","order":null,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","breakdown":"$initial_referring_domain","breakdown_type":"event","date_from":"-7d"},"filters_hash":"cache_944e0e9720f9f748249124a5c382774f","order":null,"deleted":false,"dashboards":[3075],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T17:38:09.889797Z","created_by":null,"description":"Shows a breakdown of where unique users came from when visiting your app.","updated_at":"2022-09-13T08:08:58.582354Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.854980Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304971} +{"stream":"insights","data":{"id":163726,"short_id":"dq-ThgEa","name":"Daily Active Users (DAUs)","derived_name":null,"filters":{"events":[{"id":"$pageview","math":"dau","name":"$pageview","type":"events","order":null,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_f5ac455f169bde777746b727edddd7f8","order":null,"deleted":false,"dashboards":[3075],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T17:38:09.871561Z","created_by":null,"description":"Shows the number of unique users that use your app everyday.","updated_at":"2022-09-13T08:08:58.651465Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.104282Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304972} +{"stream":"insights","data":{"id":163729,"short_id":"1rK08k3X","name":"Repeat users over time","derived_name":null,"filters":{"events":[{"id":"$pageview","math":"dau","name":"$pageview","type":"events","order":null,"properties":[],"math_property":null}],"insight":"STICKINESS","interval":"day","shown_as":"Stickiness","date_from":"2021-04-06T00:00:00+00:00"},"filters_hash":"cache_177c7c6b05b7add4d8c49e37a6edec05","order":null,"deleted":false,"dashboards":[3075],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T17:38:09.880274Z","created_by":null,"description":"Shows you how many users visited your app for a specific number of days (e.g. a user that visited your app twice in the time period will be shown under \"2 days\").","updated_at":"2022-09-13T08:08:58.634965Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.819314Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304973} +{"stream":"insights","data":{"id":163728,"short_id":"bu7lqO6C","name":"Cumulative DAUs","derived_name":null,"filters":{"events":[{"id":"$pageview","math":"dau","name":"$pageview","type":"events","order":null,"properties":[],"math_property":null}],"display":"ActionsLineGraphCumulative","insight":"TRENDS","interval":"day","date_from":"-30d"},"filters_hash":"cache_ea144b47db256d4ffda297c38dd318e9","order":null,"deleted":false,"dashboards":[3075],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T17:38:09.877667Z","created_by":null,"description":"Shows the total cumulative number of unique users that have been using your app.","updated_at":"2022-09-13T08:08:58.618931Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.842975Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304973} +{"stream":"insights","data":{"id":670850,"short_id":"8XvZoCns","name":null,"derived_name":null,"filters":{"date_from":"-7d","insight":"TRENDS"},"filters_hash":"cache_ea144b47db256d4ffda297c38dd318e9","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2022-03-09T16:09:32.083369Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2022-03-09T16:09:32.083418Z","favorited":false,"saved":false,"last_modified_at":"2022-03-09T16:09:32.083054Z","last_modified_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304974} +{"stream":"insights","data":{"id":670849,"short_id":"eTtILmr5","name":"","derived_name":null,"filters":{"events":[{"id":"$pageview","name":"$pageview","type":"events","order":0}],"actions":[],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","properties":[],"filter_test_accounts":true,"date_from":"-7d"},"filters_hash":"cache_f4eecf430510c6876da4307363a59e49","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2022-03-09T16:09:31.958352Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":"","updated_at":"2022-03-09T16:09:31.958408Z","favorited":false,"saved":false,"last_modified_at":"2022-03-09T16:09:31.957195Z","last_modified_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304974} +{"stream":"insights","data":{"id":213715,"short_id":"y24rpNCe","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","funnel_window_days":14,"date_from":"-7d"},"filters_hash":"cache_8d68101e1e86236de7915e5c730be0c4","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:35:52.391121Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.911906Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.911906Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304975} +{"stream":"insights","data":{"id":213713,"short_id":"209aIuRV","name":null,"derived_name":null,"filters":{"period":"Day","display":"ActionsTable","insight":"RETENTION","target_entity":{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":null,"properties":[],"math_property":null},"retention_type":"retention_first_time","total_intervals":11,"returning_entity":{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":null,"properties":[],"math_property":null},"date_from":"-7d"},"filters_hash":"cache_b1d670caeb7f32c72e84006f0d8be538","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:35:47.346240Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.875362Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.875362Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304976} +{"stream":"insights","data":{"id":213710,"short_id":"oJr3SlD5","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","funnel_window_days":14,"date_from":"-7d"},"filters_hash":"cache_8d68101e1e86236de7915e5c730be0c4","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:28:40.993037Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.864063Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.864063Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304976} +{"stream":"insights","data":{"id":256093,"short_id":"wE9zYewe","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-29T23:18:45.795534Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.885953Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.885953Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304977} +{"stream":"insights","data":{"id":163764,"short_id":"QpdXwQDH","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T18:18:13.285155Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.899399Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.899399Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304977} +{"stream":"insights","data":{"id":163763,"short_id":"ykve50Wj","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T18:14:37.647278Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.160560Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.160560Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304978} +{"stream":"insights","data":{"id":570525,"short_id":"xhYF7rAy","name":"Shy Tarsier","derived_name":null,"filters":{"events":[{"id":"$pageview","name":"$pageview","type":"events","order":0}],"actions":[],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","properties":[],"filter_test_accounts":false,"date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-12-24T09:05:30.492036Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":"","updated_at":"2021-12-24T09:05:30.492080Z","favorited":false,"saved":false,"last_modified_at":"2021-12-24T09:05:30.492080Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304978} +{"stream":"insights","data":{"id":570526,"short_id":"gzNe84cp","name":null,"derived_name":null,"filters":{"date_from":"-7d","insight":"TRENDS"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-12-24T09:05:30.877901Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-12-24T09:05:30.877944Z","favorited":false,"saved":false,"last_modified_at":"2021-12-24T09:05:30.877944Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304979} +{"stream":"insights","data":{"id":163766,"short_id":"W-rYNvcs","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T18:22:14.176474Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.112303Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.112303Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304979} +{"stream":"insights","data":{"id":163765,"short_id":"x3gcA0Kn","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-04-13T18:19:49.535101Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.123104Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.123104Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304980} +{"stream":"insights","data":{"id":200215,"short_id":"7WNS4EWx","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-05-25T14:26:33.053612Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.075150Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.075150Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304980} +{"stream":"insights","data":{"id":206008,"short_id":"pRFsLyZo","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-05-31T05:30:28.554131Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.090565Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.090565Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304981} +{"stream":"insights","data":{"id":198941,"short_id":"nd97pTSP","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-05-24T13:29:42.652621Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.961298Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.961298Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304981} +{"stream":"insights","data":{"id":213711,"short_id":"bnLI-MAL","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","funnel_window_days":14,"date_from":"-7d"},"filters_hash":"cache_8d68101e1e86236de7915e5c730be0c4","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:35:29.032837Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.987137Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.987137Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304981} +{"stream":"insights","data":{"id":213714,"short_id":"0EwMH6yE","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","funnel_window_days":14,"date_from":"-7d"},"filters_hash":"cache_8d68101e1e86236de7915e5c730be0c4","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:35:48.710280Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.000406Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.000406Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304982} +{"stream":"insights","data":{"id":213705,"short_id":"_FsNEK5X","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","funnel_window_days":14,"date_from":"-7d"},"filters_hash":"cache_8d68101e1e86236de7915e5c730be0c4","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:24:49.188549Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.973122Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.973122Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304982} +{"stream":"insights","data":{"id":213716,"short_id":"WxvO5m1k","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","funnel_window_days":14,"date_from":"-7d"},"filters_hash":"cache_8d68101e1e86236de7915e5c730be0c4","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:36:02.019371Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.012800Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.012800Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304983} +{"stream":"insights","data":{"id":294009,"short_id":"HEoqvgms","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-07-20T22:55:26.316355Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.024831Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.024831Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304983} +{"stream":"insights","data":{"id":293965,"short_id":"F9tjOzvn","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-07-20T22:39:01.520725Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.934422Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.934422Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304983} +{"stream":"insights","data":{"id":213712,"short_id":"snZr-umB","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","filters":[],"insight":"SESSIONS","session":"avg","interval":"day","pagination":{},"funnel_window_days":14,"date_from":"-7d"},"filters_hash":"cache_2cb269e70a0e907e6b8a0fd46299aa25","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:35:34.572463Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.923200Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.923200Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304984} +{"stream":"insights","data":{"id":206009,"short_id":"UOZ1pgAZ","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","date_from":"-7d"},"filters_hash":"cache_d84371fe9033fc2e24232306c2a0d927","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-05-31T05:30:39.377924Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:31.802916Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:31.802916Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304984} +{"stream":"insights","data":{"id":213707,"short_id":"E3zJbZDu","name":null,"derived_name":null,"filters":{"events":[{"id":"$pageview","math":null,"name":"$pageview","type":"events","order":0,"properties":[],"math_property":null}],"display":"ActionsLineGraph","insight":"TRENDS","interval":"day","funnel_window_days":14,"date_from":"-7d"},"filters_hash":"cache_8d68101e1e86236de7915e5c730be0c4","order":null,"deleted":false,"dashboards":[],"last_refresh":null,"refreshing":false,"result":null,"created_at":"2021-06-04T06:26:16.018680Z","created_by":{"id":2784,"uuid":"0178cc4f-de6d-0000-2ab5-2f87f8e20c59","distinct_id":"EFyGMuyo10bP6867CXbOhx2nHkFjH6snnKW06Fo17bk","first_name":"Eugene Kulak","email":"integration-test@airbyte.io"},"description":null,"updated_at":"2021-11-11T11:16:32.135374Z","favorited":false,"saved":false,"last_modified_at":"2021-11-11T11:16:32.135374Z","last_modified_by":null,"is_sample":false,"effective_restriction_level":21,"effective_privilege_level":37,"timezone":null,"tags":[]},"emitted_at":1668174304984} diff --git a/airbyte-integrations/connectors/source-posthog/integration_tests/future_state.json b/airbyte-integrations/connectors/source-posthog/integration_tests/future_state.json index eb574b7c6dca..79e5bae57f3d 100644 --- a/airbyte-integrations/connectors/source-posthog/integration_tests/future_state.json +++ b/airbyte-integrations/connectors/source-posthog/integration_tests/future_state.json @@ -1,4 +1,7 @@ { - "events": { "timestamp": "2121-04-13T18:13:51.504000+00:00" }, - "annotations": { "updated_at": "2121-05-27T14:09:29.961933Z" } -} + "events": { + "2331": { + "timestamp": "2221-12-10T10:21:35.003000+00:00" + } + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-posthog/integration_tests/future_state_old.json b/airbyte-integrations/connectors/source-posthog/integration_tests/future_state_old.json new file mode 100644 index 000000000000..a209b41e5311 --- /dev/null +++ b/airbyte-integrations/connectors/source-posthog/integration_tests/future_state_old.json @@ -0,0 +1,5 @@ +{ + "events": { + "timestamp": "2221-12-10T10:21:35.003000+00:00" + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-posthog/sample_files/state.json b/airbyte-integrations/connectors/source-posthog/sample_files/state.json index 31d52e9a4d56..f5d946108473 100644 --- a/airbyte-integrations/connectors/source-posthog/sample_files/state.json +++ b/airbyte-integrations/connectors/source-posthog/sample_files/state.json @@ -1,6 +1,7 @@ { - "feature_flags": { "id": 697 }, - "events": { "timestamp": "2021-05-31T06:58:11.633000+00:00" }, - "persons": { "created_at": "2021-04-13T18:13:54.269000Z" }, - "annotations": { "updated_at": "2021-05-27T14:09:29.961933Z" } -} + "events": { + "2331": { + "timestamp": "2021-12-10T10:21:35.003000+00:00" + } + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-posthog/setup.py b/airbyte-integrations/connectors/source-posthog/setup.py index 2f120670c6e2..04f54fa7eea5 100644 --- a/airbyte-integrations/connectors/source-posthog/setup.py +++ b/airbyte-integrations/connectors/source-posthog/setup.py @@ -5,9 +5,7 @@ from setuptools import find_packages, setup -MAIN_REQUIREMENTS = [ - "airbyte-cdk~=0.1", -] +MAIN_REQUIREMENTS = ["airbyte-cdk"] TEST_REQUIREMENTS = [ "pytest~=6.1", @@ -21,6 +19,6 @@ author_email="contact@airbyte.io", packages=find_packages(), install_requires=MAIN_REQUIREMENTS, - package_data={"": ["*.json", "schemas/*.json"]}, + package_data={"": ["*.json", "*.yaml", "schemas/*.json"]}, extras_require={"tests": TEST_REQUIREMENTS}, ) diff --git a/airbyte-integrations/connectors/source-posthog/source_posthog/components.py b/airbyte-integrations/connectors/source-posthog/source_posthog/components.py new file mode 100644 index 000000000000..42772e752691 --- /dev/null +++ b/airbyte-integrations/connectors/source-posthog/source_posthog/components.py @@ -0,0 +1,126 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from dataclasses import dataclass +from typing import Any, Iterable, Mapping, MutableMapping, Optional + +from airbyte_cdk.models import SyncMode +from airbyte_cdk.sources.declarative.retrievers.simple_retriever import SimpleRetriever +from airbyte_cdk.sources.declarative.stream_slicers import CartesianProductStreamSlicer +from airbyte_cdk.sources.declarative.types import Record, StreamSlice + + +@dataclass +class EventsSimpleRetriever(SimpleRetriever): + def request_params( + self, + stream_state: StreamSlice, + stream_slice: Optional[StreamSlice] = None, + next_page_token: Optional[Mapping[str, Any]] = None, + ) -> MutableMapping[str, Any]: + """Events API return records in descendent order (newest first). + Default page limit is 100 items. + + Even though API mentions such pagination params as 'limit' and 'offset', they are actually ignored. + Instead, response contains 'next' url with datetime range for next OLDER records, like: + + response: + { + "next": "https://app.posthog.com/api/projects/2331/events?after=2021-01-01T00%3A00%3A00.000000Z&before=2021-05-29T16%3A44%3A43.175000%2B00%3A00", + "results": [ + {id ...}, + {id ...}, + ] + } + + So if next_page_token is set (contains 'after'/'before' params), + then stream_slice params ('after'/'before') should be ignored. + """ + + if next_page_token: + stream_slice = {} + + return self._get_request_options( + stream_slice, + next_page_token, + self.requester.get_request_params, + self.paginator.get_request_params, + self.stream_slicer.get_request_params, + ) + + +@dataclass +class EventsCartesianProductStreamSlicer(CartesianProductStreamSlicer): + """Connector requires support of nested state - each project should have own timestamp value, like: + { + "project_id1": { + "timestamp": "2021-02-01T10:21:35.003000Z" + }, + "project_idX": { + "timestamp": "2022-11-17:00:00.000000Z" + } + } + we also have to support old-style (before 0.1.8) states, like: + { + "timestamp": "2021-17-01T10:21:35.003000Z" + } + + Slicer also produces separate datetime slices for each project + """ + + def __post_init__(self, options: Mapping[str, Any]): + self._cursor = {} + self._options = options + + def get_stream_state(self) -> Mapping[str, Any]: + return self._cursor or {} + + def update_cursor(self, stream_slice: StreamSlice, last_record: Optional[Record] = None): + + if not last_record: + # this is actually initial stream state from CLI + self._cursor = stream_slice + return + + project_id = str(stream_slice.get("project_id", "")) + if project_id: + current_cursor_value = self._cursor.get(project_id, {}).get("timestamp", "") + new_cursor_value = last_record.get("timestamp", "") + + self._cursor[project_id] = {"timestamp": max(current_cursor_value, new_cursor_value)} + + def stream_slices(self, sync_mode: SyncMode, stream_state: Mapping[str, Any]) -> Iterable[Mapping[str, Any]]: + """Since each project has its own state, then we need to have a separate + datetime slices for each project + """ + + slices = [] + + project_slicer, datetime_slicer = self.stream_slicers + + # support of old style state: it contains only a single 'timestamp' field + old_style_state = stream_state if "timestamp" in stream_state else {} + + for project_slice in project_slicer.stream_slices(sync_mode, stream_state): + project_id = str(project_slice.get("project_id", "")) + + # use old_style_state if state does not contain states for each project + project_state = stream_state.get(project_id, {}) or old_style_state + + # Each project should have own datetime slices depends on its state + project_datetime_slices = datetime_slicer.stream_slices(sync_mode, project_state) + + # fix date ranges: start_time of next slice must be equal to end_time of previous slice + if project_datetime_slices and project_state: + project_datetime_slices[0]["start_time"] = project_state["timestamp"] + for i, datetime_slice in enumerate(project_datetime_slices[1:], start=1): + datetime_slice["start_time"] = project_datetime_slices[i - 1]["end_time"] + + # Add project id to each slice + for datetime_slice in project_datetime_slices: + datetime_slice["project_id"] = project_id + + slices.extend(project_datetime_slices) + + return slices diff --git a/airbyte-integrations/connectors/source-posthog/source_posthog/posthog.yaml b/airbyte-integrations/connectors/source-posthog/source_posthog/posthog.yaml new file mode 100644 index 000000000000..fbd270572ac3 --- /dev/null +++ b/airbyte-integrations/connectors/source-posthog/source_posthog/posthog.yaml @@ -0,0 +1,166 @@ +version: "0.1.0" + +definitions: + + schema_loader: + file_path: "./source_posthog/schemas/{{ options['name'] }}.json" + + selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_pointer: ['results'] + + requester: + type: HttpRequester + name: "{{ options['name'] }}" + url_base: "{{ config['base_url'] or 'https://app.posthog.com'}}/api/" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + + retriever: + type: SimpleRetriever + name: "{{ options['name'] }}" + primary_key: "{{ options['primary_key'] }}" + record_selector: + $ref: "*ref(definitions.selector)" + paginator: + type: "DefaultPaginator" + url_base: "*ref(definitions.requester.url_base)" + page_size_option: + inject_into: "request_parameter" + field_name: "limit" + pagination_strategy: + type: "OffsetIncrement" + page_size: 100 + page_token_option: + field_name: "offset" + inject_into: "request_parameter" + + base_stream: + primary_key: "id" + schema_loader: + $ref: "*ref(definitions.schema_loader)" + retriever: + $ref: "*ref(definitions.retriever)" + requester: + $ref: "*ref(definitions.requester)" + + projects_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "projects" + path: "projects" + + base_slicing_stream: + $ref: "*ref(definitions.base_stream)" + retriever: + $ref: "*ref(definitions.retriever)" + requester: + $ref: "*ref(definitions.requester)" + path: "/projects/{{ stream_slice.id }}/{{ options['name'] }}" + stream_slicer: + type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.projects_stream)" + parent_key: id + stream_slice_field: id + + cohorts_stream: + $ref: "*ref(definitions.base_slicing_stream)" + $options: + name: "cohorts" + path: "cohorts" + + feature_flags_stream: + $ref: "*ref(definitions.base_slicing_stream)" + $options: + name: "feature_flags" + path: "feature_flags" + + persons_stream: + $ref: "*ref(definitions.base_slicing_stream)" + $options: + name: "persons" + path: "persons" + + annotations_stream: + $ref: "*ref(definitions.base_slicing_stream)" + $options: + name: "annotations" + path: "annotations" + + insights_stream: + $ref: "*ref(definitions.base_slicing_stream)" + $options: + name: "insights" + path: "insights" + + events_stream: + $options: + name: "events" + path: "events" + primary_key: "id" + stream_cursor_field: "timestamp" + schema_loader: + $ref: "*ref(definitions.schema_loader)" + retriever: + class_name: source_posthog.components.EventsSimpleRetriever + name: "{{ options['name'] }}" + primary_key: "{{ options['primary_key'] }}" + record_selector: + $ref: "*ref(definitions.selector)" + requester: + $ref: "*ref(definitions.requester)" + path: "/projects/{{ stream_slice.project_id }}/{{ options['name'] }}/" + stream_slicer: + class_name: source_posthog.components.EventsCartesianProductStreamSlicer + stream_slicers: + - type: SubstreamSlicer + parent_stream_configs: + - stream: "*ref(definitions.projects_stream)" + parent_key: "id" + stream_slice_field: "project_id" + - type: DatetimeStreamSlicer + start_datetime: + datetime: "{{ config['start_date'] }}" + datetime_format: "%Y-%m-%dT%H:%M:%S%z" + end_datetime: + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S%z') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S%z" + datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z" + step: 30d + cursor_field: timestamp + start_time_option: + field_name: after + inject_into: request_parameter + end_time_option: + field_name: before + inject_into: request_parameter + paginator: + type: "DefaultPaginator" + url_base: "*ref(definitions.requester.url_base)" + page_size_option: + inject_into: "request_parameter" + field_name: "limit" + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response['next'] }}" + page_size: 100 + page_token_option: + inject_into: "path" + +streams: + - "*ref(definitions.projects_stream)" + - "*ref(definitions.cohorts_stream)" + - "*ref(definitions.feature_flags_stream)" + - "*ref(definitions.persons_stream)" + - "*ref(definitions.events_stream)" + - "*ref(definitions.annotations_stream)" + - "*ref(definitions.insights_stream)" + +check: + type: CheckStream + stream_names: ["projects"] diff --git a/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/insights.json b/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/insights.json new file mode 100644 index 000000000000..e8802e74354d --- /dev/null +++ b/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/insights.json @@ -0,0 +1,161 @@ +{ + "type": ["object", "null"], + "properties": { + "id": { + "type": ["number"] + }, + "short_id": { + "type": ["string", "null"] + }, + "name": { + "derived_name": ["string", "null"] + }, + "filters": { + "type": ["object", "null"], + "properties": { + "display": { + "type": ["string", "null"] + }, + "insight": { + "type": ["string", "null"] + }, + "interval": { + "type": ["string", "null"] + }, + "date_from": { + "type": ["string", "null"] + } + } + }, + + "filters_hash": { + "type": ["string", "null"] + }, + "order": { + "type": ["string", "null"] + }, + "deleted": { + "type": ["boolean", "null"] + }, + + + "last_refresh": { + "type": ["string", "null"] + }, + "refreshing": { + "type": ["boolean", "null"] + }, + "result": { + "type": ["array", "null"], + "items": { + "type": ["object", "null"], + "properties": { + "action_id": { + "type": ["string", "null"] + }, + "average_conversion_time": { + "type": ["string", "null"] + }, + "converted_people_url": { + "type": ["string", "null"] + }, + "count": { + "type": ["number", "null"] + }, + "custom_name": { + "type": ["string", "null"] + }, + "name": { + "type": ["string", "null"] + }, + "median_conversion_time": { + "type": ["string", "null"] + }, + "order": { + "type": ["number", "null"] + }, + "type": { + "type": ["string", "null"] + } + } + } + }, + "created_at": { + "type": ["string", "null"] + }, + "created_by": { + "type": ["object", "null"], + "properties": { + "id": { + "type": ["number", "null"] + }, + "uuid": { + "type": ["string", "null"] + }, + "distinct_id": { + "type": ["string", "null"] + }, + "first_name": { + "type": ["string", "null"] + }, + "email": { + "type": ["string", "null"] + } + } + }, + + "description": { + "type": ["string", "null"] + }, + "updated_at": { + "type": ["string", "null"] + }, + "favorited": { + "type": ["boolean", "null"] + }, + "saved": { + "type": ["boolean", "null"] + }, + "last_modified_at": { + "type": ["string", "null"] + }, + "last_modified_by": { + "type": ["object", "null"], + "properties": { + "distinct_id": { + "type": ["string", "null"] + }, + "email": { + "type": ["string", "null"] + }, + "first_name": { + "type": ["string", "null"] + }, + "id": { + "type": ["number", "null"] + }, + "uuid": { + "type": ["string", "null"] + } + } + }, + "is_sample": { + "type": ["boolean", "null"] + }, + "effective_restriction_level": { + "type": ["number", "null"] + }, + "effective_privilege_level": { + "type": ["number", "null"] + }, + "timezone": { + "type": ["string", "null"] + }, + "tags": { + "type": ["array", "null"], + "items": { + "type": ["string", "null"] + } + } + } +} diff --git a/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/persons.json b/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/persons.json index 64779cdac28a..15e315f69897 100644 --- a/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/persons.json +++ b/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/persons.json @@ -13,9 +13,6 @@ "type": "string" } }, - "properties": { - "type": "object" - }, "created_at": { "type": "string", "format": "date-time" diff --git a/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/projects.json b/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/projects.json new file mode 100644 index 000000000000..f1b28f3eca2c --- /dev/null +++ b/airbyte-integrations/connectors/source-posthog/source_posthog/schemas/projects.json @@ -0,0 +1,38 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "uuid": { + "type": "string" + }, + "organization": { + "type": "string" + }, + "api_token": { + "type": "string" + }, + "name": { + "type": "string" + }, + "completed_snippet_onboarding": { + "type": "boolean" + }, + "ingested_event": { + "type": "boolean" + }, + "is_demo": { + "type": "boolean" + }, + "timezone": { + "type": "string" + }, + "access_control": { + "type": "boolean" + }, + "effective_membership_level": { + "type": "number" + } + } +} diff --git a/airbyte-integrations/connectors/source-posthog/source_posthog/source.py b/airbyte-integrations/connectors/source-posthog/source_posthog/source.py index c1986599aaa6..afb33b77b92b 100644 --- a/airbyte-integrations/connectors/source-posthog/source_posthog/source.py +++ b/airbyte-integrations/connectors/source-posthog/source_posthog/source.py @@ -2,45 +2,16 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # -from typing import Any, List, Mapping, Tuple +from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource -import pendulum -import requests -from airbyte_cdk.logger import AirbyteLogger -from airbyte_cdk.models import SyncMode -from airbyte_cdk.sources import AbstractSource -from airbyte_cdk.sources.streams import Stream -from airbyte_cdk.sources.streams.http.auth import TokenAuthenticator +""" +This file provides the necessary constructs to interpret a provided declarative YAML configuration file into +source connector. +WARNING: Do not modify this file. +""" -from .streams import Annotations, Cohorts, Events, FeatureFlags, Persons, PingMe -DEFAULT_BASE_URL = "https://app.posthog.com" - - -class SourcePosthog(AbstractSource): - def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, Any]: - try: - _ = pendulum.parse(config["start_date"]) - authenticator = TokenAuthenticator(token=config["api_key"]) - base_url = config.get("base_url", DEFAULT_BASE_URL) - - stream = PingMe(authenticator=authenticator, base_url=base_url) - records = stream.read_records(sync_mode=SyncMode.full_refresh) - _ = next(records) - return True, None - except Exception as e: - if isinstance(e, requests.exceptions.HTTPError) and e.response.status_code == requests.codes.UNAUTHORIZED: - return False, f"Please check you api_key. Error: {repr(e)}" - return False, repr(e) - - def streams(self, config: Mapping[str, Any]) -> List[Stream]: - authenticator = TokenAuthenticator(token=config["api_key"]) - base_url = config.get("base_url", DEFAULT_BASE_URL) - - return [ - Annotations(authenticator=authenticator, start_date=config["start_date"], base_url=base_url), - Cohorts(authenticator=authenticator, base_url=base_url), - Events(authenticator=authenticator, start_date=config["start_date"], base_url=base_url), - FeatureFlags(authenticator=authenticator, base_url=base_url), - Persons(authenticator=authenticator, base_url=base_url), - ] +# Declarative Source +class SourcePosthog(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "posthog.yaml"}) diff --git a/airbyte-integrations/connectors/source-posthog/source_posthog/streams.py b/airbyte-integrations/connectors/source-posthog/source_posthog/streams.py deleted file mode 100644 index 68c5e77dc865..000000000000 --- a/airbyte-integrations/connectors/source-posthog/source_posthog/streams.py +++ /dev/null @@ -1,193 +0,0 @@ -# -# Copyright (c) 2022 Airbyte, Inc., all rights reserved. -# - - -import math -import urllib.parse -from abc import ABC, abstractmethod -from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Sequence - -import requests -from airbyte_cdk.models import SyncMode -from airbyte_cdk.sources.streams.http import HttpStream - - -class PosthogStream(HttpStream, ABC): - primary_key = "id" - data_field = "results" - - def __init__(self, base_url: str, **kwargs): - super().__init__(**kwargs) - self._url_base = f"{base_url}/api/" - - @property - def url_base(self) -> str: - return self._url_base - - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - resp_json = response.json() - if resp_json.get("next"): - next_query_string = urllib.parse.urlsplit(resp_json["next"]).query - params = dict(urllib.parse.parse_qsl(next_query_string)) - return params - - def request_headers(self, **kwargs) -> Mapping[str, Any]: - return {"Content-Type": "application/json", "User-Agent": "posthog-python/1.4.0"} - - def parse_response(self, response: requests.Response, stream_state: Mapping[str, Any], **kwargs) -> Iterable[Mapping]: - response_data = response.json() - if self.data_field: - response_data = response_data.get(self.data_field) - - if isinstance(response_data, Sequence): - yield from response_data - elif response_data: - yield response_data - - def request_params( - self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None - ) -> MutableMapping[str, Any]: - - params = {} - if next_page_token: - params.update(next_page_token) - return params - - -class IncrementalPosthogStream(PosthogStream, ABC): - """ - Because endpoints has descending order we need to save initial state value to know when to stop pagination. - start_date is used to as a min date to filter on. - """ - - state_checkpoint_interval = math.inf - - def __init__(self, base_url: str, start_date: str, **kwargs): - super().__init__(base_url=base_url, **kwargs) - self._start_date = start_date - self._initial_state = None # we need to keep it here because next_page_token doesn't accept state argument - - @property - @abstractmethod - def cursor_field(self) -> str: - """ - Defining a cursor field indicates that a stream is incremental, so any incremental stream must extend this class - and define a cursor field. - """ - - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - """ - Return next page token until we reach the page with records older than state/start_date - """ - response_json = response.json() - data = response_json.get(self.data_field, []) - latest_record = data[-1] if data else None # records are ordered so we check only last one - - if not latest_record or latest_record[self.cursor_field] > self._initial_state: - return super().next_page_token(response=response) - - def get_updated_state(self, current_stream_state: MutableMapping[str, Any], latest_record: Mapping[str, Any]) -> Mapping[str, Any]: - """ - Return the latest state by comparing the cursor value in the latest record with the stream's most recent state object - and returning an updated state object. - """ - latest_state = latest_record.get(self.cursor_field) - current_state = current_stream_state.get(self.cursor_field) or latest_state - return {self.cursor_field: max(latest_state, current_state)} - - def parse_response(self, response: requests.Response, stream_state: Mapping[str, Any], **kwargs) -> Iterable[Mapping]: - """ - Filter records by initial_state value - """ - data = super().parse_response(response=response, stream_state=stream_state, **kwargs) - for record in data: - if record.get(self.cursor_field) >= self._initial_state: - yield record - - 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]]: - """ - Initialize initial_state value - """ - stream_state = stream_state or {} - self._initial_state = self._initial_state or stream_state.get(self.cursor_field) or self._start_date - return super().read_records(sync_mode=sync_mode, cursor_field=cursor_field, stream_slice=stream_slice, stream_state=stream_state) - - -class Annotations(IncrementalPosthogStream): - """ - Docs: https://posthog.com/docs/api/annotations - """ - - cursor_field = "updated_at" - - def path(self, **kwargs) -> str: - return "annotation" - - def request_params(self, stream_state: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: - params = super().request_params(stream_state=stream_state, **kwargs) - params["order"] = f"-{self.cursor_field}" # sort descending - return params - - -class Cohorts(PosthogStream): - """ - Docs: https://posthog.com/docs/api/cohorts - normal ASC sorting. But without filters like `since` - """ - - def path(self, **kwargs) -> str: - return "cohort" - - -class Events(IncrementalPosthogStream): - """ - Docs: https://posthog.com/docs/api/events - """ - - cursor_field = "timestamp" - - def path(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> str: - return "event" - - def request_params(self, stream_state: Mapping[str, Any], **kwargs) -> MutableMapping[str, Any]: - params = super().request_params(stream_state=stream_state, **kwargs) - since_value = stream_state.get(self.cursor_field) or self._start_date - since_value = max(since_value, self._start_date) - params["after"] = since_value - return params - - -class FeatureFlags(PosthogStream): - """ - Docs: https://posthog.com/docs/api/feature-flags - """ - - def path(self, **kwargs) -> str: - return "feature_flag" - - -class Persons(PosthogStream): - """ - Docs: https://posthog.com/docs/api/people - """ - - def path(self, **kwargs) -> str: - return "person" - - -class PingMe(PosthogStream): - """ - Docs: https://posthog.com/docs/api/user - """ - - data_field = None - - def path(self, **kwargs) -> str: - return "users/@me" diff --git a/airbyte-integrations/connectors/source-posthog/unit_tests/test_components.py b/airbyte-integrations/connectors/source-posthog/unit_tests/test_components.py new file mode 100644 index 000000000000..6951aeaa04e2 --- /dev/null +++ b/airbyte-integrations/connectors/source-posthog/unit_tests/test_components.py @@ -0,0 +1,136 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest as pytest +from airbyte_cdk.models import SyncMode +from airbyte_cdk.sources.declarative.datetime.min_max_datetime import MinMaxDatetime +from airbyte_cdk.sources.declarative.requesters.request_option import RequestOption +from airbyte_cdk.sources.declarative.stream_slicers.datetime_stream_slicer import DatetimeStreamSlicer +from airbyte_cdk.sources.declarative.stream_slicers.list_stream_slicer import ListStreamSlicer +from source_posthog.components import EventsCartesianProductStreamSlicer + +stream_slicers = [ + ListStreamSlicer(slice_values=[2331], cursor_field="project_id", config={}, options={}), + DatetimeStreamSlicer( + start_datetime=MinMaxDatetime(datetime="2021-01-01T00:00:00.00+0000", datetime_format="%Y-%m-%dT%H:%M:%S.%f%z", options={}), + end_datetime=MinMaxDatetime(datetime="2021-02-01T00:00:00.00+0000", datetime_format="%Y-%m-%dT%H:%M:%S.%f%z", options={}), + step="10d", + cursor_field="timestamp", + datetime_format="%Y-%m-%dT%H:%M:%S.%f%z", + start_time_option=RequestOption(inject_into="request_parameter", field_name="after", options={}), + end_time_option=RequestOption(inject_into="request_parameter", field_name="before", options={}), + config={}, + options={}, + ), +] + + +@pytest.mark.parametrize( + "test_name, initial_state, stream_slice, last_record, expected_state", + [ + ("test_empty", {}, {}, {}, {}), + ( + "test_set_initial_state", + {"2331": {"timestamp": "2021-01-01T00:00:00.00+0000"}}, + {}, + {}, + {"2331": {"timestamp": "2021-01-01T00:00:00.00+0000"}}, + ), + ( + "test_update_empty_state", + {}, + {"project_id": "2331", "start_time": "2021-01-01T00:00:00.00+0000", "end_time": "2021-01-03T00:00:00.00+0000"}, + {"timestamp": "2021-01-01T11:00:00.00+0000"}, + {"2331": {"timestamp": "2021-01-01T11:00:00.00+0000"}} + ), + ( + "test_update_of_initial_state", + {"2331": {"timestamp": "2021-01-01T10:00:00.00+0000"}}, + {"project_id": "2331", "start_time": "2021-01-01T00:00:00.00+0000", "end_time": "2021-01-03T00:00:00.00+0000"}, + {"timestamp": "2021-01-01T11:00:00.00+0000"}, + {"2331": {"timestamp": "2021-01-01T11:00:00.00+0000"}} + ), + ( + "test_update_of_initial_state_newly", + {"2331": {"timestamp": "2021-01-01T22:00:00.00+0000"}}, + {"project_id": "2331", "start_time": "2021-01-01T00:00:00.00+0000", "end_time": "2021-01-03T00:00:00.00+0000"}, + {"timestamp": "2021-01-01T11:00:00.00+0000"}, + {"2331": {"timestamp": "2021-01-01T22:00:00.00+0000"}} + ), + ( + "test_update_of_initial_state_old_style", + {"timestamp": "2021-01-01T10:00:00.00+0000"}, + {"project_id": "2331", "start_time": "2021-01-01T00:00:00.00+0000", "end_time": "2021-01-03T00:00:00.00+0000"}, + {"timestamp": "2021-01-01T11:00:00.00+0000"}, + {"2331": {"timestamp": "2021-01-01T11:00:00.00+0000"}, + "timestamp": '2021-01-01T10:00:00.00+0000'} + ), + ], +) +def test_update_cursor(test_name, initial_state, stream_slice, last_record, expected_state): + slicer = EventsCartesianProductStreamSlicer(stream_slicers=stream_slicers, options={}) + # set initial state + slicer.update_cursor(initial_state, None) + + if last_record: + slicer.update_cursor(stream_slice, last_record) + + updated_state = slicer.get_stream_state() + assert updated_state == expected_state + + +@pytest.mark.parametrize( + "test_name, stream_state, expected_stream_slices", + [ + ("test_empty_state", + {}, + [{'end_time': '2021-01-10T00:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-01T00:00:00.000000+0000'}, + {'end_time': '2021-01-20T00:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-10T00:00:00.000000+0000'}, + {'end_time': '2021-01-30T00:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-20T00:00:00.000000+0000'}, + {'end_time': '2021-02-01T00:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-30T00:00:00.000000+0000'}] + ), + ("test_state", + {'2331': {"timestamp": "2021-01-01T17:00:00.000000+0000"}}, + [{'end_time': '2021-01-11T17:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-01T17:00:00.000000+0000'}, + {'end_time': '2021-01-21T17:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-11T17:00:00.000000+0000'}, + {'end_time': '2021-01-31T17:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-21T17:00:00.000000+0000'}] + ), + ("test_old_stype_state", + {"timestamp": "2021-01-01T17:00:00.000000+0000"}, + [{'end_time': '2021-01-11T17:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-01T17:00:00.000000+0000'}, + {'end_time': '2021-01-21T17:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-11T17:00:00.000000+0000'}, + {'end_time': '2021-01-31T17:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-21T17:00:00.000000+0000'}] + ), + ("test_state_for_one_slice", + {'2331': {"timestamp": "2021-01-27T17:00:00.000000+0000"}}, + [{'end_time': '2021-02-01T00:00:00.000000+0000', + 'project_id': '2331', + 'start_time': '2021-01-27T17:00:00.000000+0000'}] + ), + ], +) +def test_stream_slices(test_name, stream_state, expected_stream_slices): + slicer = EventsCartesianProductStreamSlicer(stream_slicers=stream_slicers, options={}) + stream_slices = slicer.stream_slices(SyncMode.incremental, stream_state=stream_state) + assert list(stream_slices) == expected_stream_slices diff --git a/airbyte-integrations/connectors/source-posthog/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-posthog/unit_tests/unit_test.py index fe7236071dd8..7122cc65a801 100644 --- a/airbyte-integrations/connectors/source-posthog/unit_tests/unit_test.py +++ b/airbyte-integrations/connectors/source-posthog/unit_tests/unit_test.py @@ -9,5 +9,5 @@ def test_client_wrong_credentials(): source = SourcePosthog() - status, error = source.check_connection(logger=AirbyteLogger(), config={"api_key": "blahblah"}) + status, error = source.check_connection(logger=AirbyteLogger(), config={"api_key": "blahblah", "start_date": "2021-01-01T00:00:00Z"}) assert not status diff --git a/airbyte-integrations/connectors/source-redshift/integration_tests/basic_dataset.sql b/airbyte-integrations/connectors/source-redshift/integration_tests/basic_dataset.sql index 743dc4076e97..b764b5e0ec50 100644 --- a/airbyte-integrations/connectors/source-redshift/integration_tests/basic_dataset.sql +++ b/airbyte-integrations/connectors/source-redshift/integration_tests/basic_dataset.sql @@ -1,20 +1,64 @@ -CREATE TABLE IF NOT EXISTS sat_test_dataset.sat_basic_dataset ( - id INTEGER, - test_column_1 SMALLINT, - test_column_2 INTEGER, - test_column_3 BIGINT, - test_column_4 DECIMAL, - test_column_5 REAL, - test_column_6 DOUBLE PRECISION, - test_column_7 BOOLEAN, - test_column_8 CHAR, - test_column_9 VARCHAR, - test_column_10 DATE, - test_column_11 TIMESTAMP, - test_column_12 TIMESTAMPTZ, - test_column_13 TIME, - test_column_14 TIMETZ, - test_column_15 VARBYTE); +CREATE + TABLE + IF NOT EXISTS sat_test_dataset.sat_basic_dataset( + id INTEGER, + test_column_1 SMALLINT, + test_column_2 INTEGER, + test_column_3 BIGINT, + test_column_4 DECIMAL, + test_column_5 REAL, + test_column_6 DOUBLE PRECISION, + test_column_7 BOOLEAN, + test_column_8 CHAR, + test_column_9 VARCHAR, + test_column_10 DATE, + test_column_11 TIMESTAMP, + test_column_12 TIMESTAMPTZ, + test_column_13 TIME, + test_column_14 TIMETZ, + test_column_15 VARBYTE + ); -insert into sat_test_dataset.sat_basic_dataset values (1, 1, 126, 1024, 555.666, 777.888, 999.000, true, 'q', 'some text', '2008-12-31', 'Jun 1,2008 09:59:59', 'Jun 1,2008 09:59:59 EST', '04:05:06', '04:05:06 EST', 'xxx'::varbyte); -insert into sat_test_dataset.sat_basic_dataset values (2, -5, -126, -1024, -555.666, -777.888, -999.000, false, 'g', 'new text', '1987-10-10', 'Jun 21,2005 12:00:59', 'Oct 15,2003 09:59:59 EST', '04:05:00', '04:05:00 EST', 'yyy'::varbyte); +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 1, + 1, + 126, + 1024, + 555.666, + 777.888, + 999.000, + TRUE, + 'q', + 'some text', + '2008-12-31', + 'Jun 1,2008 09:59:59', + 'Jun 1,2008 09:59:59 EST', + '04:05:06', + '04:05:06 EST', + 'xxx'::varbyte + ); + +INSERT + INTO + sat_test_dataset.sat_basic_dataset + VALUES( + 2, + - 5, + - 126, + - 1024, + - 555.666, + - 777.888, + - 999.000, + FALSE, + 'g', + 'new text', + '1987-10-10', + 'Jun 21,2005 12:00:59', + 'Oct 15,2003 09:59:59 EST', + '04:05:00', + '04:05:00 EST', + 'yyy'::varbyte + ); diff --git a/airbyte-integrations/connectors/source-redshift/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/RedshiftSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-redshift/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/RedshiftSourceAcceptanceTest.java index 6dac467ef33e..f146da4a4767 100644 --- a/airbyte-integrations/connectors/source-redshift/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/RedshiftSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-redshift/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/RedshiftSourceAcceptanceTest.java @@ -20,13 +20,13 @@ import io.airbyte.integrations.source.redshift.RedshiftSource; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import java.nio.file.Path; import java.sql.SQLException; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/AbstractDbSource.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/AbstractDbSource.java index 0c2e593e1edf..6fc97f7a4c13 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/AbstractDbSource.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/AbstractDbSource.java @@ -30,6 +30,10 @@ import io.airbyte.integrations.source.relationaldb.models.DbState; import io.airbyte.integrations.source.relationaldb.state.StateManager; import io.airbyte.integrations.source.relationaldb.state.StateManagerFactory; +import io.airbyte.protocol.models.CommonField; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; @@ -41,12 +45,8 @@ import io.airbyte.protocol.models.v0.AirbyteStream; import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; import io.airbyte.protocol.models.v0.CatalogHelpers; -import io.airbyte.protocol.models.CommonField; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.sql.SQLException; import java.time.Instant; @@ -182,7 +182,9 @@ public AutoCloseableIterator read(final JsonNode config, private void validateCursorFieldForIncrementalTables( final Map>> tableNameToTable, - final ConfiguredAirbyteCatalog catalog, final Database database) throws SQLException { + final ConfiguredAirbyteCatalog catalog, + final Database database) + throws SQLException { final List tablesWithInvalidCursor = new ArrayList<>(); final List tablesWithInvalidCursorToWarnAbout = new ArrayList<>(); for (final ConfiguredAirbyteStream airbyteStream : catalog.getStreams()) { @@ -235,14 +237,17 @@ private void validateCursorFieldForIncrementalTables( /** * Verify that cursor column allows syncing to go through. + * * @param database database * @return true if syncing can go through. false otherwise * @throws SQLException exception */ - protected boolean verifyCursorColumnValues(final Database database, final String schema, final String tableName, final String columnName) throws SQLException { + protected boolean verifyCursorColumnValues(final Database database, final String schema, final String tableName, final String columnName) + throws SQLException { /* no-op */ return true; } + private List>> discoverWithoutSystemTables( final Database database) throws Exception { diff --git a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/StateDecoratingIterator.java b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/StateDecoratingIterator.java index 9ad8149b104d..8dc663709a43 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/StateDecoratingIterator.java +++ b/airbyte-integrations/connectors/source-relational-db/src/main/java/io/airbyte/integrations/source/relationaldb/StateDecoratingIterator.java @@ -7,11 +7,11 @@ import com.google.common.collect.AbstractIterator; import io.airbyte.db.IncrementalUtils; import io.airbyte.integrations.source.relationaldb.state.StateManager; +import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteMessage.Type; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; import java.util.Iterator; import java.util.Objects; import java.util.Optional; diff --git a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/StateDecoratingIteratorTest.java b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/StateDecoratingIteratorTest.java index acb58cf4ad1d..f641d68944a9 100644 --- a/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/StateDecoratingIteratorTest.java +++ b/airbyte-integrations/connectors/source-relational-db/src/test/java/io/airbyte/integrations/source/relationaldb/StateDecoratingIteratorTest.java @@ -14,12 +14,12 @@ import io.airbyte.commons.json.Jsons; import io.airbyte.commons.util.MoreIterators; import io.airbyte.integrations.source.relationaldb.state.StateManager; +import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteMessage.Type; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.AirbyteStateMessage; import io.airbyte.protocol.models.v0.AirbyteStreamNameNamespacePair; -import io.airbyte.protocol.models.JsonSchemaPrimitiveUtil.JsonSchemaPrimitive; import java.sql.SQLException; import java.util.Collections; import java.util.Iterator; diff --git a/airbyte-integrations/connectors/source-retently/acceptance-test-config.yml b/airbyte-integrations/connectors/source-retently/acceptance-test-config.yml index 35e05d2aa4e0..1b5c42decce1 100644 --- a/airbyte-integrations/connectors/source-retently/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-retently/acceptance-test-config.yml @@ -17,3 +17,6 @@ tests: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" empty_streams: ["reports"] + full_refresh: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-retently/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-retently/integration_tests/configured_catalog.json index 23552e0aa88c..dcaeaf54b78e 100644 --- a/airbyte-integrations/connectors/source-retently/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-retently/integration_tests/configured_catalog.json @@ -2,7 +2,7 @@ "streams": [ { "stream": { - "name": "customers", + "name": "campaigns", "json_schema": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object" @@ -24,6 +24,18 @@ "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" }, + { + "stream": { + "name": "customers", + "json_schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object" + }, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, { "stream": { "name": "nps", @@ -50,7 +62,7 @@ }, { "stream": { - "name": "campaigns", + "name": "outbox", "json_schema": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object" @@ -71,6 +83,18 @@ }, "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "templates", + "json_schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object" + }, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" } ] } diff --git a/airbyte-integrations/connectors/source-retently/sample_files/configured_catalog.json b/airbyte-integrations/connectors/source-retently/sample_files/configured_catalog.json index 8d19736aadcc..d6c36509573e 100644 --- a/airbyte-integrations/connectors/source-retently/sample_files/configured_catalog.json +++ b/airbyte-integrations/connectors/source-retently/sample_files/configured_catalog.json @@ -2,7 +2,7 @@ "streams": [ { "stream": { - "name": "customers", + "name": "campaigns", "json_schema": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object" @@ -24,6 +24,42 @@ "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" }, + { + "stream": { + "name": "customers", + "json_schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object" + }, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "feedback", + "json_schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object" + }, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "outbox", + "json_schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object" + }, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, { "stream": { "name": "reports", @@ -35,6 +71,18 @@ }, "sync_mode": "full_refresh", "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "templates", + "json_schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object" + }, + "supported_sync_modes": ["full_refresh"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" } ] } diff --git a/airbyte-integrations/connectors/source-retently/setup.py b/airbyte-integrations/connectors/source-retently/setup.py index 83501a9efc3f..b978c63b1b73 100644 --- a/airbyte-integrations/connectors/source-retently/setup.py +++ b/airbyte-integrations/connectors/source-retently/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup MAIN_REQUIREMENTS = [ - "airbyte-cdk", + "airbyte-cdk~=0.2", ] TEST_REQUIREMENTS = [ diff --git a/airbyte-integrations/connectors/source-retently/source_retently/schemas/campaigns.json b/airbyte-integrations/connectors/source-retently/source_retently/schemas/campaigns.json index 26d6e832dfea..8079b5a96e54 100644 --- a/airbyte-integrations/connectors/source-retently/source_retently/schemas/campaigns.json +++ b/airbyte-integrations/connectors/source-retently/source_retently/schemas/campaigns.json @@ -1,13 +1,26 @@ { "type": "object", - "properties": - { - "id": { "type": "string" }, - "name": { "type": "string" }, - "isActive": { "type": "boolean" }, - "templateId": { "type": "string" }, - "metric": { "type": "string" }, - "type": { "type": "string" }, - "channel": { "type": "string" } + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "templateId": { + "type": "string" + }, + "metric": { + "type": "string" + }, + "type": { + "type": "string" + }, + "channel": { + "type": "string" + } } } diff --git a/airbyte-integrations/connectors/source-retently/source_retently/schemas/outbox.json b/airbyte-integrations/connectors/source-retently/source_retently/schemas/outbox.json new file mode 100644 index 000000000000..2bfe40896ccb --- /dev/null +++ b/airbyte-integrations/connectors/source-retently/source_retently/schemas/outbox.json @@ -0,0 +1,77 @@ +{ + "type": "object", + "properties": { + "email": { + "type": "string" + }, + "customerId": { + "type": "string" + }, + "firstName": { + "type": "string" + }, + "lastName": { + "type": "string" + }, + "companyName": { + "type": "string" + }, + "companyId": { + "type": "string" + }, + "sentDate": { + "type": "string" + }, + "channel": { + "type": "string" + }, + "campaign": { + "type": "string" + }, + "campaignId": { + "type": "string" + }, + "surveyTemplateId": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "sentBy": { + "type": "string" + }, + "status": { + "type": "string" + }, + "detailedStatus": { + "type": "object", + "properties": { + "isOpened": { + "type": "boolean" + }, + "openedDate": { + "type": "string" + }, + "isResponded": { + "type": "boolean" + }, + "respondedDate": { + "type": "string" + }, + "hasFeedback": { + "type": "boolean" + }, + "isOptedOut": { + "type": "boolean" + }, + "isBounced": { + "type": "boolean" + } + } + }, + "additionalRecipients": { + "type": "array", + "items": { "type": "object"} + } + } +} diff --git a/airbyte-integrations/connectors/source-retently/source_retently/schemas/templates.json b/airbyte-integrations/connectors/source-retently/source_retently/schemas/templates.json new file mode 100644 index 000000000000..e69851218c02 --- /dev/null +++ b/airbyte-integrations/connectors/source-retently/source_retently/schemas/templates.json @@ -0,0 +1,18 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "channel": { + "type": "string" + }, + "metric": { + "type": "string" + } + }, + "required": ["id", "name", "channel", "metric"] +} diff --git a/airbyte-integrations/connectors/source-retently/source_retently/source.py b/airbyte-integrations/connectors/source-retently/source_retently/source.py index e42beff2779e..c93ab590d7b5 100644 --- a/airbyte-integrations/connectors/source-retently/source_retently/source.py +++ b/airbyte-integrations/connectors/source-retently/source_retently/source.py @@ -13,6 +13,8 @@ from airbyte_cdk.sources.streams.http import HttpStream from airbyte_cdk.sources.streams.http.auth import Oauth2Authenticator, TokenAuthenticator +BASE_URL = "https://app.retently.com/api/v2/" + class SourceRetently(AbstractSource): @staticmethod @@ -35,6 +37,8 @@ def get_authenticator(config): def check_connection(self, logger, config) -> Tuple[bool, any]: try: auth = self.get_authenticator(config) + + # NOTE: not all retently instances have companies stream = Customers(auth) records = stream.read_records(sync_mode=SyncMode.full_refresh) next(records) @@ -44,15 +48,23 @@ def check_connection(self, logger, config) -> Tuple[bool, any]: def streams(self, config: Mapping[str, Any]) -> List[Stream]: auth = self.get_authenticator(config) - return [Customers(auth), Companies(auth), Reports(auth), Nps(auth), Campaigns(auth), Feedback(auth)] + + return [ + Campaigns(auth), + Companies(auth), + Customers(auth), + Feedback(auth), + Outbox(auth), + Reports(auth), + Nps(auth), + Templates(auth), + ] class RetentlyStream(HttpStream): primary_key = None - @property - def url_base(self) -> str: - return "https://app.retently.com/api/v2/" + url_base = BASE_URL @property @abstractmethod @@ -62,10 +74,9 @@ def json_path(self): def parse_response( self, response: requests.Response, - stream_state: Mapping[str, Any], - stream_slice: Mapping[str, Any] = None, - next_page_token: Mapping[str, Any] = None, + **kwargs, ) -> Iterable[Mapping]: + data = response.json().get("data") stream_data = data.get(self.json_path) if self.json_path else data for d in stream_data: @@ -88,32 +99,71 @@ def request_params( stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None, ) -> MutableMapping[str, Any]: - return next_page_token + next_page = next_page_token or {} + return { + # The companies endpoint only supports limit 100 + "limit": 1000 if self.json_path != "companies" else 100, + **next_page, + } + + +class Campaigns(RetentlyStream): + json_path = "campaigns" + + def path(self, **kwargs) -> str: + return "campaigns" + + # does not support pagination + def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: + return None + + +class Companies(RetentlyStream): + json_path = "companies" + + def path( + self, + **kwargs, + ) -> str: + return "companies" class Customers(RetentlyStream): json_path = "subscribers" def path( - self, stream_state: Mapping[str, Any] = None, stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None + self, + **kwargs, ) -> str: return "nps/customers" -class Companies(RetentlyStream): - json_path = "companies" +class Feedback(RetentlyStream): + json_path = "responses" def path( - self, stream_state: Mapping[str, Any] = None, stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None + self, + **kwargs, ) -> str: - return "companies" + return "feedback" + + +class Outbox(RetentlyStream): + json_path = "surveys" + + def path( + self, + **kwargs, + ) -> str: + return "nps/outbox" class Reports(RetentlyStream): json_path = None def path( - self, stream_state: Mapping[str, Any] = None, stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None + self, + **kwargs, ) -> str: return "reports" # does not support pagination @@ -132,6 +182,16 @@ def path( def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: return None + +class Templates(RetentlyStream): + json_path = "templates" + + def path( + self, + **kwargs, + ) -> str: + return "templates" + def parse_response( self, response: requests.Response, @@ -169,3 +229,4 @@ def path( self, stream_state: Mapping[str, Any] = None, stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None ) -> str: return "feedback" + diff --git a/airbyte-integrations/connectors/source-retently/source_retently/spec.json b/airbyte-integrations/connectors/source-retently/source_retently/spec.json index 59b7f3408017..bec3525fa185 100644 --- a/airbyte-integrations/connectors/source-retently/source_retently/spec.json +++ b/airbyte-integrations/connectors/source-retently/source_retently/spec.json @@ -1,5 +1,5 @@ { - "documentationUrl": "https://docsurl.com", + "documentationUrl": "https://docs.airbyte.com/integrations/sources/retently", "connectionSpecification": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Retently Api Spec", diff --git a/airbyte-integrations/connectors/source-retently/unit_tests/test_source.py b/airbyte-integrations/connectors/source-retently/unit_tests/test_source.py index 18bf1bd5c4c9..2a41a774598f 100644 --- a/airbyte-integrations/connectors/source-retently/unit_tests/test_source.py +++ b/airbyte-integrations/connectors/source-retently/unit_tests/test_source.py @@ -28,5 +28,5 @@ def test_streams(mocker): source = SourceRetently() config_mock = MagicMock() streams = source.streams(config_mock) - expected_streams_number = 6 + expected_streams_number = 8 assert len(streams) == expected_streams_number diff --git a/airbyte-integrations/connectors/source-retently/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-retently/unit_tests/test_streams.py index 92c941d2bfb2..ff429279b1a8 100644 --- a/airbyte-integrations/connectors/source-retently/unit_tests/test_streams.py +++ b/airbyte-integrations/connectors/source-retently/unit_tests/test_streams.py @@ -7,7 +7,7 @@ from unittest.mock import MagicMock import pytest -from source_retently.source import Companies +from source_retently.source import Campaigns, Companies @pytest.fixture @@ -18,10 +18,17 @@ def patch_base_class(mocker): mocker.patch.object(Companies, "__abstractmethods__", set()) -def test_request_params(patch_base_class): +def test_request_params_companies(patch_base_class): stream = Companies() inputs = {"stream_slice": None, "stream_state": None, "next_page_token": None} - expected_params = None + expected_params = {'limit': 100} + assert stream.request_params(**inputs) == expected_params + + +def test_request_params_other(patch_base_class): + stream = Campaigns() + inputs = {"stream_slice": None, "stream_state": None, "next_page_token": None} + expected_params = {'limit': 1000} assert stream.request_params(**inputs) == expected_params diff --git a/airbyte-integrations/connectors/source-sftp/src/test-integration/java/io/airbyte/integrations/source/sftp/SftpSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-sftp/src/test-integration/java/io/airbyte/integrations/source/sftp/SftpSourceAcceptanceTest.java index f567d6d0c1b4..2b26911b3d11 100644 --- a/airbyte-integrations/connectors/source-sftp/src/test-integration/java/io/airbyte/integrations/source/sftp/SftpSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-sftp/src/test-integration/java/io/airbyte/integrations/source/sftp/SftpSourceAcceptanceTest.java @@ -11,12 +11,12 @@ import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; import io.airbyte.integrations.util.HostPortResolver; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.Collections; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-shopify/source_shopify/schemas/products_graph_ql.json b/airbyte-integrations/connectors/source-shopify/source_shopify/schemas/products_graph_ql.json index fc9b648dc9eb..46a8464b62f6 100644 --- a/airbyte-integrations/connectors/source-shopify/source_shopify/schemas/products_graph_ql.json +++ b/airbyte-integrations/connectors/source-shopify/source_shopify/schemas/products_graph_ql.json @@ -29,10 +29,7 @@ "type": "string" }, "onlineStoreUrl": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "options": { "items": { @@ -61,10 +58,7 @@ "type": "string" }, "publishedAt": { - "type": [ - "null", - "string" - ] + "type": ["null", "string"] }, "shop_url": { "type": "string" diff --git a/airbyte-integrations/connectors/source-snowflake/integration_tests/sat_basic_dataset.sql b/airbyte-integrations/connectors/source-snowflake/integration_tests/sat_basic_dataset.sql index 0dcbc56151c0..d5aa375c188f 100644 --- a/airbyte-integrations/connectors/source-snowflake/integration_tests/sat_basic_dataset.sql +++ b/airbyte-integrations/connectors/source-snowflake/integration_tests/sat_basic_dataset.sql @@ -38,8 +38,8 @@ CREATE TABLE sat_test_dataset.sat_basic_dataset INSERT INTO sat_test_dataset.sat_basic_dataset select 1, 99999999999999999999999999999999999999, 10.12345, -9007199254740991, 10e-308, 'тест', 'テスト', '-!-', 'a', to_binary('HELP', 'UTF-8'), 'true', 9223372036854775807, '0001-01-01', '0001-01-01 00:00:00', '2018-03-22 12:00:00.123', '2018-03-22 12:00:00.123 +05:00', '2018-03-22 12:00:00.123 +05:00', '2018-03-22 12:00:00.123 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), 99999999999999999999999999999999999999, 'POINT(-122.35 37.55)', 99999999999999999999999999999999999999, 9223372036854775807, 9223372036854775807, 9223372036854775807, 9223372036854775807, 9223372036854775807; INSERT INTO sat_test_dataset.sat_basic_dataset select 2, -99999999999999999999999999999999999999, 10.12345, 9007199254740991, 10e+307, '⚡ test ��', 'テスト', '-\x25-', 'ス', to_binary('HELP', 'UTF-8'), 5, -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -99999999999999999999999999999999999999, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_basic_dataset select 3, 9223372036854775807, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', '!', to_binary('HELP', 'UTF-8'), 'false', -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), 9223372036854775807, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_basic_dataset select 4, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), 0, -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_basic_dataset select 5, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('y'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_basic_dataset select 6, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('n'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_basic_dataset select 7, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('n'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; \ No newline at end of file +INSERT INTO sat_test_dataset.sat_basic_dataset select 3, 9223372036854775807, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', '!', to_binary('HELP', 'UTF-8'), 'false', -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), 9223372036854775807, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; +INSERT INTO sat_test_dataset.sat_basic_dataset select 4, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), 0, -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; +INSERT INTO sat_test_dataset.sat_basic_dataset select 5, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('y'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; +INSERT INTO sat_test_dataset.sat_basic_dataset select 6, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('n'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; +INSERT INTO sat_test_dataset.sat_basic_dataset select 7, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('n'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; diff --git a/airbyte-integrations/connectors/source-snowflake/integration_tests/sat_full_dataset.sql b/airbyte-integrations/connectors/source-snowflake/integration_tests/sat_full_dataset.sql index 3726271d9d98..35f585d98872 100644 --- a/airbyte-integrations/connectors/source-snowflake/integration_tests/sat_full_dataset.sql +++ b/airbyte-integrations/connectors/source-snowflake/integration_tests/sat_full_dataset.sql @@ -39,8 +39,8 @@ CREATE TABLE sat_test_dataset.sat_full_dataset INSERT INTO sat_test_dataset.sat_full_dataset select 1, 99999999999999999999999999999999999999, 10.12345, -9007199254740991, 10e-308, 'тест', 'テスト', '-!-', 'a', to_binary('HELP', 'UTF-8'), 'true', 9223372036854775807, '0001-01-01', '0001-01-01 00:00:00', '00:00:00', '2018-03-22 12:00:00.123', '2018-03-22 12:00:00.123 +05:00', '2018-03-22 12:00:00.123 +05:00', '2018-03-22 12:00:00.123 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), 99999999999999999999999999999999999999, 'POINT(-122.35 37.55)', 99999999999999999999999999999999999999, 9223372036854775807, 9223372036854775807, 9223372036854775807, 9223372036854775807, 9223372036854775807; INSERT INTO sat_test_dataset.sat_full_dataset select 2, -99999999999999999999999999999999999999, 10.12345, 9007199254740991, 10e+307, '⚡ test ��', 'テスト', '-\x25-', 'ス', to_binary('HELP', 'UTF-8'), 5, -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59', '1:59 PM', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -99999999999999999999999999999999999999, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_full_dataset select 3, 9223372036854775807, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', '!', to_binary('HELP', 'UTF-8'), 'false', -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), 9223372036854775807, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_full_dataset select 4, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), 0, -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_full_dataset select 5, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('y'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_full_dataset select 6, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('n'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; -INSERT INTO sat_test_dataset.sat_full_dataset select 7, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&\'()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('n'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; \ No newline at end of file +INSERT INTO sat_test_dataset.sat_full_dataset select 3, 9223372036854775807, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', '!', to_binary('HELP', 'UTF-8'), 'false', -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), 9223372036854775807, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; +INSERT INTO sat_test_dataset.sat_full_dataset select 4, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), 0, -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; +INSERT INTO sat_test_dataset.sat_full_dataset select 5, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('y'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; +INSERT INTO sat_test_dataset.sat_full_dataset select 6, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('n'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; +INSERT INTO sat_test_dataset.sat_full_dataset select 7, -9223372036854775808, 10.12345, 9007199254740991, 10e+307, '!"#$%&''()*+,-./:;<=>?\@[\]^_\`{|}~', 'テスト', '-\x25-', 'ї', to_binary('HELP', 'UTF-8'), TO_BOOLEAN('n'), -9223372036854775808, '9999-12-31', '9999-12-31 23:59:59.123456', '23:59:59.123456', '2018-03-22 12:00:00.123456', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', '2018-03-22 12:00:00.123456 +05:00', parse_json(' { "key1": "value1", "key2": "value2" } '), array_construct(1, 2, 3), parse_json(' { "outer_key1": { "inner_key1A": "1a", "inner_key1B": "1b" }, "outer_key2": { "inner_key2": 2 } } '), -9223372036854775808, 'LINESTRING(-124.20 42.00, -120.01 41.99)', -99999999999999999999999999999999999999, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808; diff --git a/airbyte-integrations/connectors/source-snowflake/src/main/java/io.airbyte.integrations.source.snowflake/SnowflakeSourceOperations.java b/airbyte-integrations/connectors/source-snowflake/src/main/java/io.airbyte.integrations.source.snowflake/SnowflakeSourceOperations.java index 48043913662a..a050d44c59c5 100644 --- a/airbyte-integrations/connectors/source-snowflake/src/main/java/io.airbyte.integrations.source.snowflake/SnowflakeSourceOperations.java +++ b/airbyte-integrations/connectors/source-snowflake/src/main/java/io.airbyte.integrations.source.snowflake/SnowflakeSourceOperations.java @@ -113,7 +113,8 @@ protected void setDate(final PreparedStatement preparedStatement, final int para } @Override - protected void putTimestampWithTimezone(final ObjectNode node, final String columnName, final ResultSet resultSet, final int index) throws SQLException { + protected void putTimestampWithTimezone(final ObjectNode node, final String columnName, final ResultSet resultSet, final int index) + throws SQLException { final Timestamp timestamp = resultSet.getTimestamp(index); node.put(columnName, DateTimeConverter.convertToTimestampWithTimezone(timestamp)); } diff --git a/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeJdbcSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeJdbcSourceAcceptanceTest.java index 67acfe70cb09..45d37c526998 100644 --- a/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeJdbcSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeJdbcSourceAcceptanceTest.java @@ -21,14 +21,14 @@ import io.airbyte.integrations.source.jdbc.test.JdbcSourceAcceptanceTest; import io.airbyte.integrations.source.relationaldb.models.DbStreamState; import io.airbyte.integrations.source.snowflake.SnowflakeSource; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.AirbyteCatalog; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus; import io.airbyte.protocol.models.v0.AirbyteConnectionStatus.Status; import io.airbyte.protocol.models.v0.AirbyteMessage; import io.airbyte.protocol.models.v0.AirbyteRecordMessage; import io.airbyte.protocol.models.v0.CatalogHelpers; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.math.BigDecimal; import java.nio.file.Path; diff --git a/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeSourceAcceptanceTest.java index b8d3faf18032..eb965eed33ad 100644 --- a/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeSourceAcceptanceTest.java @@ -20,13 +20,13 @@ import io.airbyte.integrations.source.snowflake.SnowflakeSource; import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.nio.file.Path; import java.util.HashMap; diff --git a/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeSourceDatatypeTest.java b/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeSourceDatatypeTest.java index 874ea18c6f58..d45deae77d9a 100644 --- a/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeSourceDatatypeTest.java +++ b/airbyte-integrations/connectors/source-snowflake/src/test-integration/java/io/airbyte/integrations/io/airbyte/integration_tests/sources/SnowflakeSourceDatatypeTest.java @@ -206,7 +206,6 @@ protected void initTests() { .addExpectedValues("9", "990", "9990", "999000", "999000000", "999000000000") .build()); - // Data Types for Text Strings addDataTypeTestData( TestDataHolder.builder() diff --git a/airbyte-integrations/connectors/source-square/Dockerfile b/airbyte-integrations/connectors/source-square/Dockerfile index f1f4164ea035..ddc7afb1e70e 100644 --- a/airbyte-integrations/connectors/source-square/Dockerfile +++ b/airbyte-integrations/connectors/source-square/Dockerfile @@ -1,16 +1,38 @@ -FROM python:3.9-slim +FROM python:3.9.11-alpine3.15 as base + +# build and load all requirements +FROM base as builder +WORKDIR /airbyte/integration_code + +# upgrade pip to the latest version +RUN apk --no-cache upgrade \ + && pip install --upgrade pip \ + && apk --no-cache add tzdata build-base -# Bash is installed for more convenient debugging. -RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/* +COPY setup.py ./ +# install necessary packages to a temporary folder +RUN pip install --prefix=/install . + +# build a clean environment +FROM base WORKDIR /airbyte/integration_code -COPY source_square ./source_square + +# copy all loaded and built libraries to a pure basic image +COPY --from=builder /install /usr/local +# add default timezone settings +COPY --from=builder /usr/share/zoneinfo/Etc/UTC /etc/localtime +RUN echo "Etc/UTC" > /etc/timezone + +# bash is installed for more convenient debugging. +RUN apk --no-cache add bash + +# copy payload code only COPY main.py ./ -COPY setup.py ./ -RUN pip install . +COPY source_square ./source_square ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.4 +LABEL io.airbyte.version=0.2.0 LABEL io.airbyte.name=airbyte/source-square diff --git a/airbyte-integrations/connectors/source-square/README.md b/airbyte-integrations/connectors/source-square/README.md index e2bcf72ce674..87cd7ef6044b 100644 --- a/airbyte-integrations/connectors/source-square/README.md +++ b/airbyte-integrations/connectors/source-square/README.md @@ -1,34 +1,10 @@ # Square Source -This is the repository for the Square source connector, written in Python. +This is the repository for the Square configuration based source connector. For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/square). ## Local development -### Prerequisites -**To iterate on this connector, make sure to complete this prerequisites section.** - -#### Minimum Python version required `= 3.7.0` - -#### Build & Activate Virtual Environment and install dependencies -From this connector directory, create a virtual environment: -``` -python -m venv .venv -``` - -This will generate a virtualenv for this module in `.venv/`. Make sure this venv is active in your -development environment of choice. To activate it from the terminal, run: -``` -source .venv/bin/activate -pip install -r requirements.txt -``` -If you are in an IDE, follow your IDE's instructions to activate the virtualenv. - -Note that while we are installing dependencies from `requirements.txt`, you should only edit `setup.py` for your dependencies. `requirements.txt` is -used for editable installs (`pip install -e`) to pull in Python dependencies from the monorepo and will call `setup.py`. -If this is mumbo jumbo to you, don't worry about it, just put your deps in `setup.py` but install using `pip install -r requirements.txt` and everything -should work as you expect. - #### Building via Gradle You can also build the connector in Gradle. This is typically used in CI and not needed for your development workflow. @@ -39,21 +15,13 @@ To build using Gradle, from the Airbyte repository root, run: #### Create credentials **If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/sources/square) -to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_square/spec.json` file. +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_square/spec.yaml` file. Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. See `integration_tests/sample_config.json` for a sample config file. **If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `source square test creds` and place them into `secrets/config.json`. -### Locally running the connector -``` -python main.py spec -python main.py check --config secrets/config.json -python main.py discover --config secrets/config.json -python main.py read --config secrets/config.json --catalog integration_tests/configured_catalog.json -``` - ### Locally running the connector docker image #### Build @@ -78,31 +46,11 @@ docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-square:dev discover -- docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-square:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json ``` ## Testing -Make sure to familiarize yourself with [pytest test discovery](https://docs.pytest.org/en/latest/goodpractices.html#test-discovery) to know how your test files and methods should be named. -First install test dependencies into your virtual environment: -``` -pip install .[tests] -``` -### Unit Tests -To run unit tests locally, from the connector directory run: -``` -python -m pytest unit_tests -``` -### Integration Tests -There are two types of integration tests: Acceptance Tests (Airbyte's test suite for all source connectors) and custom integration tests (which are specific to this connector). -#### Custom Integration tests -Place custom tests inside `integration_tests/` folder, then, from the connector root, run -``` -python -m pytest integration_tests -``` #### Acceptance Tests Customize `acceptance-test-config.yml` file to configure tests. See [Source Acceptance Tests](https://docs.airbyte.io/connector-development/testing-connectors/source-acceptance-tests-reference) for more information. If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. -To run your integration tests with acceptance tests, from the connector root, run -``` -python -m pytest integration_tests -p integration_tests.acceptance -``` + To run your integration tests with docker ### Using gradle to run tests diff --git a/airbyte-integrations/connectors/source-square/__init__.py b/airbyte-integrations/connectors/source-square/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-square/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-square/acceptance-test-config.yml b/airbyte-integrations/connectors/source-square/acceptance-test-config.yml index e3cfdf922783..61080ef121f6 100644 --- a/airbyte-integrations/connectors/source-square/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-square/acceptance-test-config.yml @@ -1,7 +1,7 @@ connector_image: airbyte/source-square:dev tests: spec: - - spec_path: "source_square/spec.json" + - spec_path: "source_square/spec.yaml" connection: - config_path: "secrets/config.json" status: "succeed" @@ -15,13 +15,18 @@ tests: basic_read: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" + empty_streams: ["payments"] + expect_records: + path: "integration_tests/expected_records.txt" - config_path: "secrets/config_oauth.json" configured_catalog_path: "integration_tests/configured_catalog_oauth.json" + empty_streams: ["shifts", "orders", "payments", "refunds"] + expect_records: + path: "integration_tests/expected_records_oauth.txt" incremental: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" future_state_path: "integration_tests/abnormal_state.json" full_refresh: - config_path: "secrets/config.json" - configured_catalog_path: "integration_tests/configured_catalog.json" - + configured_catalog_path: "integration_tests/configured_catalog.json" \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-square/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-square/acceptance-test-docker.sh old mode 100755 new mode 100644 index e4d8b1cef896..c51577d10690 --- a/airbyte-integrations/connectors/source-square/acceptance-test-docker.sh +++ b/airbyte-integrations/connectors/source-square/acceptance-test-docker.sh @@ -1,7 +1,7 @@ #!/usr/bin/env sh # Build latest connector image -docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2) +docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2-) # Pull latest acctest image docker pull airbyte/source-acceptance-test:latest diff --git a/airbyte-integrations/connectors/source-square/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-square/integration_tests/abnormal_state.json index 412f778cf106..7aea53c00df4 100644 --- a/airbyte-integrations/connectors/source-square/integration_tests/abnormal_state.json +++ b/airbyte-integrations/connectors/source-square/integration_tests/abnormal_state.json @@ -1,23 +1,23 @@ { "items": { - "updated_at": "2200-01-01T00:00:00+00:00" + "updated_at": "2200-01-01T00:00:00.0Z" }, "categories": { - "updated_at": "2200-01-01T00:00:00+00:00" + "updated_at": "2200-01-01T00:00:00.0Z" }, "discounts": { - "updated_at": "2200-01-01T00:00:00+00:00" + "updated_at": "2200-01-01T00:00:00.0Z" }, "taxes": { - "updated_at": "2200-01-01T00:00:00+00:00" + "updated_at": "2200-01-01T00:00:00.0Z" }, "modifier_list": { - "updated_at": "2200-01-01T00:00:00+00:00" + "updated_at": "2200-01-01T00:00:00.0Z" }, "refunds": { - "created_at": "2200-01-01T00:00:00+00:00" + "created_at": "2200-01-01T00:00:00.0Z" }, "payments": { - "created_at": "2200-01-01T00:00:00+00:00" + "created_at": "2200-01-01T00:00:00.0Z" } } diff --git a/airbyte-integrations/connectors/source-square/integration_tests/configured_catalog_oauth.json b/airbyte-integrations/connectors/source-square/integration_tests/configured_catalog_oauth.json index 316537a5a67f..f34fd4fc8ea0 100644 --- a/airbyte-integrations/connectors/source-square/integration_tests/configured_catalog_oauth.json +++ b/airbyte-integrations/connectors/source-square/integration_tests/configured_catalog_oauth.json @@ -1,5 +1,53 @@ { "streams": [ + { + "stream": { + "name": "items", + "json_schema": {}, + "supported_sync_modes": ["incremental", "full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "categories", + "json_schema": {}, + "supported_sync_modes": ["incremental", "full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "discounts", + "json_schema": {}, + "supported_sync_modes": ["incremental", "full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "taxes", + "json_schema": {}, + "supported_sync_modes": ["incremental", "full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, { "stream": { "name": "locations", @@ -35,6 +83,78 @@ "sync_mode": "full_refresh", "cursor_field": ["id"], "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "refunds", + "json_schema": {}, + "supported_sync_modes": ["incremental", "full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["created_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["created_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "payments", + "json_schema": {}, + "supported_sync_modes": ["incremental", "full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["created_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["created_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "customers", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["id"] + }, + "sync_mode": "full_refresh", + "cursor_field": ["id"], + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "modifier_list", + "json_schema": {}, + "supported_sync_modes": ["incremental", "full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["updated_at"] + }, + "sync_mode": "incremental", + "cursor_field": ["updated_at"], + "destination_sync_mode": "append" + }, + { + "stream": { + "name": "shifts", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["id"] + }, + "sync_mode": "full_refresh", + "cursor_field": ["id"], + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "orders", + "json_schema": {}, + "supported_sync_modes": ["full_refresh"], + "source_defined_cursor": true, + "default_cursor_field": ["id"] + }, + "sync_mode": "full_refresh", + "cursor_field": ["id"], + "destination_sync_mode": "overwrite" } ] } diff --git a/airbyte-integrations/connectors/source-square/integration_tests/expected_records.txt b/airbyte-integrations/connectors/source-square/integration_tests/expected_records.txt new file mode 100644 index 000000000000..69c83b00295b --- /dev/null +++ b/airbyte-integrations/connectors/source-square/integration_tests/expected_records.txt @@ -0,0 +1,1471 @@ +{"stream":"items","data":{"type":"ITEM","id":"K7CL577FVTGEGWEHZUU3NA6P","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T09:58:41.311Z","version":1623363452995,"is_deleted":false,"custom_attribute_values":{"Square:eca67bfb-68a4-4218-950a-09eec906143d":{"name":"With coffee cup","string_value":"Yes","custom_attribute_definition_id":"VR43EHV5M3Z4P4CWA7K3ZXPA","type":"STRING","key":"Square:eca67bfb-68a4-4218-950a-09eec906143d"}},"present_at_all_locations":true,"item_data":{"name":"Coffee","description":"Some coffee drink","visibility":"PRIVATE","category_id":"WBVNPPUWI2YCVI2XJZNHPSQC","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"DT52FVGPUEJ7KL5WYPIK5TTP","updated_at":"2021-06-10T09:58:41.311Z","created_at":"2021-06-10T09:58:41.311Z","version":1623319121311,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"K7CL577FVTGEGWEHZUU3NA6P","name":"Black","sku":"1","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QTE3WP7JI64XLUD7AX5ER2ZI","item_option_value_id":"KRNNA4P57TDNVBJLWIBW5D47"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SZTS6NG7OGC25KGTRXJEUAKK","updated_at":"2021-06-10T09:58:41.311Z","created_at":"2021-06-10T09:58:41.311Z","version":1623319121311,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"K7CL577FVTGEGWEHZUU3NA6P","name":"White","sku":"2","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QTE3WP7JI64XLUD7AX5ER2ZI","item_option_value_id":"LIB3NSHGZUXFM3NFDHTUM4CJ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","skip_modifier_screen":false,"item_options":[{"item_option_id":"QTE3WP7JI64XLUD7AX5ER2ZI"}],"ecom_visibility":"UNINDEXED"}},"emitted_at":1668290115725} +{"stream":"items","data":{"type":"ITEM","id":"SY3I7GJTCYIJTOD6PKLO6VKI","updated_at":"2021-06-10T21:07:19.929Z","created_at":"2021-06-10T21:07:19.929Z","version":1623359239929,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Tea","description":"Just the tea example","visibility":"PRIVATE","category_id":"WBVNPPUWI2YCVI2XJZNHPSQC","variations":[{"type":"ITEM_VARIATION","id":"PGOQKJWR6ALTCFPVGV54LHA6","updated_at":"2021-06-10T21:07:19.929Z","created_at":"2021-06-10T21:07:19.929Z","version":1623359239929,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"SY3I7GJTCYIJTOD6PKLO6VKI","name":"Regular","sku":"3","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","skip_modifier_screen":false,"ecom_visibility":"UNINDEXED"}},"emitted_at":1668290115725} +{"stream":"items","data":{"type":"ITEM","id":"UCYFEEPFPQFTWAGMH6T56L4U","updated_at":"2021-06-14T11:24:52.498Z","created_at":"2021-06-10T21:16:07.366Z","version":1623669892498,"is_deleted":false,"present_at_all_locations":true,"image_id":"7JPVLNMPVEBNXPQT5JXYCNF2","item_data":{"name":"Beer","description":"Unfiltered","visibility":"PRIVATE","category_id":"WBVNPPUWI2YCVI2XJZNHPSQC","variations":[{"type":"ITEM_VARIATION","id":"AVZZR4PLYHND3GQU5KD25GYD","updated_at":"2021-06-10T21:16:07.366Z","created_at":"2021-06-10T21:16:07.366Z","version":1623359767366,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"UCYFEEPFPQFTWAGMH6T56L4U","name":"Light","sku":"4","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QR3GL6QNSGG7TPGX3W6F72BK","updated_at":"2021-06-10T21:46:15.762Z","created_at":"2021-06-10T21:46:15.762Z","version":1623361575762,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UCYFEEPFPQFTWAGMH6T56L4U","name":"Unfiltered","sku":"6","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DJQ5F7NPJZCO7CMCPAU4GMTN","updated_at":"2021-06-10T21:16:07.366Z","created_at":"2021-06-10T21:16:07.366Z","version":1623359767366,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"UCYFEEPFPQFTWAGMH6T56L4U","name":"Dark","sku":"5","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":1200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","skip_modifier_screen":false,"ecom_visibility":"UNINDEXED"}},"emitted_at":1668290115726} +{"stream":"items","data":{"type":"ITEM","id":"DE77DFVRTXXWY45X6HY7H5YZ","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Inside","description":"Debate yard act song entire trip. Itself far us nature best radio happy.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"CWEIC4NVKIJC5BK6PKG6UOFE","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DE77DFVRTXXWY45X6HY7H5YZ","name":"","sku":"53","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115726} +{"stream":"items","data":{"type":"ITEM","id":"JEUBW5WI77DZXPSHC2EHIFRB","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Property","description":"Senior would her respond we. Interest animal in.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"QTFEEXYH4PJMZ3EUR2ZDVJU6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JEUBW5WI77DZXPSHC2EHIFRB","name":"","sku":"55","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115726} +{"stream":"items","data":{"type":"ITEM","id":"MYX4KGKRI4RMGDLD4CQKAJS5","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Quality","description":"Everybody yet station. Operation throw glass sense ground building strategy.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","variations":[{"type":"ITEM_VARIATION","id":"XTAOP2DBKKHKMFTU5Y75IFVK","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MYX4KGKRI4RMGDLD4CQKAJS5","name":"Heart","sku":"57","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"4ZTXMH2CGLGDR6CUXRYEELI2","item_option_value_id":"XX7BJFNW2U3YKUK5TSEYBTZX"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YCKMGEXW5FRGIBQPVFIQBS3K","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MYX4KGKRI4RMGDLD4CQKAJS5","name":"It","sku":"57","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"4ZTXMH2CGLGDR6CUXRYEELI2","item_option_value_id":"TESJ6DZIAXU2JM7ZRQVSRFPS"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"4ZTXMH2CGLGDR6CUXRYEELI2"}]}},"emitted_at":1668290115726} +{"stream":"items","data":{"type":"ITEM","id":"SRZLUN563E634YN5E443BFD2","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Soldier","description":"Assume in appear build. Drop attention herself respond final nor set.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"E4R2QCV6ZADYJN3IAHIPY43T","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SRZLUN563E634YN5E443BFD2","name":"","sku":"90","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115726} +{"stream":"items","data":{"type":"ITEM","id":"AQQHYMTN25CUGF75BTYK6WWQ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Use","description":"Senior inside painting suddenly expect home involve size.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"LUGEEMT4RN63IN6ODGBK6W3O","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AQQHYMTN25CUGF75BTYK6WWQ","name":"","sku":"95","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115726} +{"stream":"items","data":{"type":"ITEM","id":"X5W26HYNFNNHNIQEXDSINTPX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bad","description":"Early plan manager good ten everyone.","category_id":"3HAZCNWXLQTQ3I5U6ZQLRLGK","variations":[{"type":"ITEM_VARIATION","id":"SKL2TBC2TD3QPAZJAKWIYZA7","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X5W26HYNFNNHNIQEXDSINTPX","name":"Opportunity","sku":"105","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZTEGM64CZQGVR4KSB5TEADZ5","item_option_value_id":"MZQR6O76KDQF2CKXYC4NAXOP"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZLVEQSGAOMZJPVVGERE2KXDZ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X5W26HYNFNNHNIQEXDSINTPX","name":"Study","sku":"105","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZTEGM64CZQGVR4KSB5TEADZ5","item_option_value_id":"7WQH7ULIQDMBEHIH2MZL7HS2"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"ZTEGM64CZQGVR4KSB5TEADZ5"}]}},"emitted_at":1668290115726} +{"stream":"items","data":{"type":"ITEM","id":"SUWEBXJ3FP65KVJWOTMSMPLX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Along","description":"Once successful benefit. Yet yourself street my resource apply include.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","variations":[{"type":"ITEM_VARIATION","id":"AOHFIWFAZI4B4CEEGIPJ4ODE","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SUWEBXJ3FP65KVJWOTMSMPLX","name":"","sku":"77","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115726} +{"stream":"items","data":{"type":"ITEM","id":"4SS62XIOXV5SOM7OXDY2LSBX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"On","description":"Wish guess per benefit. However mother believe treatment. None speech against.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"YUMISFTS5RHOVNBT34LGDG3B","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4SS62XIOXV5SOM7OXDY2LSBX","name":"Money","sku":"89","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RHO3YDWOGL6EHNJGWKM6Q5TG","item_option_value_id":"J2XXOJRHBA4MKEJGY4MI55MR"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"I5XDF5YOOHSMBT5PEVESUFWN","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4SS62XIOXV5SOM7OXDY2LSBX","name":"Various","sku":"89","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RHO3YDWOGL6EHNJGWKM6Q5TG","item_option_value_id":"QQ3LINRRI4XH44LVC4TRF523"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"RHO3YDWOGL6EHNJGWKM6Q5TG"}]}},"emitted_at":1668290115727} +{"stream":"items","data":{"type":"ITEM","id":"BUPMQFWDXQQJOV7E6UIMG7A6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Congress","description":"Yes provide card Mr hard word energy.","category_id":"J5Q2EAXIKYPJNRE2MZE23A7V","variations":[{"type":"ITEM_VARIATION","id":"GUISUVK53B3X4F6MLO74IXDW","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BUPMQFWDXQQJOV7E6UIMG7A6","name":"Occur","sku":"9","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":8000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SSZ7KOV3FZNJTG6YOUKSDX6M","item_option_value_id":"J64ZIYE2ZTQFRW2KXKAYO267"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"5ASX2CUBOY7KQKRMCJRD4S5E","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BUPMQFWDXQQJOV7E6UIMG7A6","name":"Chance","sku":"9","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SSZ7KOV3FZNJTG6YOUKSDX6M","item_option_value_id":"QYJCEGNT67FB2DYOXKS4VGAF"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"SSZ7KOV3FZNJTG6YOUKSDX6M"}]}},"emitted_at":1668290115727} +{"stream":"items","data":{"type":"ITEM","id":"5B5V3MCG7427QTTVY7CHA5DR","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T21:56:26.794Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Appear","description":"President create throughout election. Care member site deal apply size.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"S5O6EN3DRGQLRLJLPNMTE3AI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5B5V3MCG7427QTTVY7CHA5DR","name":"","sku":"20","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115727} +{"stream":"items","data":{"type":"ITEM","id":"UEAAW6XLRRHTWFBQMIO6WAB5","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Month","description":"Win plan study have shake fight. Young future tax keep beautiful always to.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"EB5QLUHFJAEKWHRUK6A6XIV4","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UEAAW6XLRRHTWFBQMIO6WAB5","name":"","sku":"28","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115727} +{"stream":"items","data":{"type":"ITEM","id":"QSJFEFZ4WDJYD3K4DZDYZV5P","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tell","description":"Why article behind blood do receive many. American not would call happen.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"ZDKTKQ23CPSTLBHUTVPQON4N","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QSJFEFZ4WDJYD3K4DZDYZV5P","name":"Two","sku":"31","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IQTYVO6PEEVWMKS7PERNHJPR","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QSJFEFZ4WDJYD3K4DZDYZV5P","name":"And","sku":"31","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115727} +{"stream":"items","data":{"type":"ITEM","id":"IUKZCYRWKLYBR6PGCOUH76OS","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rule","description":"Reality firm appear month. Thus agency conference join and. Stuff wait public.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","variations":[{"type":"ITEM_VARIATION","id":"O3NIUM4GPVJ5DAXTAVS4UAUH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IUKZCYRWKLYBR6PGCOUH76OS","name":"","sku":"60","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115727} +{"stream":"items","data":{"type":"ITEM","id":"S6I6BCV3HHQXC7SJ77CQPQNJ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Take","description":"Office onto fast state power avoid. Sort head good. Key human sea back old.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"EK6YLEXEFZ5CLVZY5ZUAVXWB","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"S6I6BCV3HHQXC7SJ77CQPQNJ","name":"","sku":"64","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115728} +{"stream":"items","data":{"type":"ITEM","id":"6ATF4UB32BXX2WWJ7LB6RCPU","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"With","description":"Big around drop during less might process leg. Understand ago air.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"BAHQ7DVATR2GHBXNEHMBYOYB","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6ATF4UB32BXX2WWJ7LB6RCPU","name":"Bad","sku":"91","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KXDSBMVFZJIHBDI477VSNLOO","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6ATF4UB32BXX2WWJ7LB6RCPU","name":"Position","sku":"91","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":12700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115728} +{"stream":"items","data":{"type":"ITEM","id":"442UNJZWL2V7D6GFWCBHDBNV","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Many","description":"Factor material different watch point. While since look north security.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"YUJCL5GBAZRN5M47N6FIU6UA","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"442UNJZWL2V7D6GFWCBHDBNV","name":"Right","sku":"33","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SBP3UWQBULHX5KWRTFKE4MQJ","item_option_value_id":"667I56RNM6LPZ66B4WIRX5JC"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"24HYJPYXSZU6SSA52E22QHPO","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"442UNJZWL2V7D6GFWCBHDBNV","name":"Second","sku":"33","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SBP3UWQBULHX5KWRTFKE4MQJ","item_option_value_id":"Y3Q7AKCBKWR7GY2W6V7BNKAT"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"SBP3UWQBULHX5KWRTFKE4MQJ"}]}},"emitted_at":1668290115728} +{"stream":"items","data":{"type":"ITEM","id":"B5ZBZAYINV245LDEFTAMZR7A","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T21:56:26.794Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Actually","description":"Appear among safe parent. Half car nothing reality significant moment nice.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"KTVRP6FQ4LDO2AKKTRCZDTR7","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B5ZBZAYINV245LDEFTAMZR7A","name":"","sku":"43","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115728} +{"stream":"items","data":{"type":"ITEM","id":"TIC5OBLQ6BHLWMMXRBOKODXJ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Threat","description":"On picture computer management successful ever rule.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","variations":[{"type":"ITEM_VARIATION","id":"SD4MLQ5CRMOYRGL3ZG5OQ673","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TIC5OBLQ6BHLWMMXRBOKODXJ","name":"","sku":"78","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115728} +{"stream":"items","data":{"type":"ITEM","id":"V2MKD6IE73ARZJGW4AHEN47J","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Chair","description":"Social guess would necessary at. Seek such unit technology morning exist.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"6EHVK3YAJOZTARIT4KE3MZ4U","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V2MKD6IE73ARZJGW4AHEN47J","name":"Product","sku":"81","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SBG7R4SSMV3KPQD2SNOBSRRK","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V2MKD6IE73ARZJGW4AHEN47J","name":"Mouth","sku":"81","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115728} +{"stream":"items","data":{"type":"ITEM","id":"7M3JALUXX4NXO5KIAFPADERQ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bag","description":"West car look father billion call. Physical cause box sing.","category_id":"3HAZCNWXLQTQ3I5U6ZQLRLGK","variations":[{"type":"ITEM_VARIATION","id":"L7QPMEBUD2WNUJUGMON5QG6V","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7M3JALUXX4NXO5KIAFPADERQ","name":"Eye","sku":"106","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"Q46CHJKR4HNEDXGG2REUGNTI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7M3JALUXX4NXO5KIAFPADERQ","name":"Late","sku":"106","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115728} +{"stream":"items","data":{"type":"ITEM","id":"GIJMH2D6HZYJYQTIARK4VHAX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Record","description":"Its personal interview require. Particular measure high.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","variations":[{"type":"ITEM_VARIATION","id":"24PKDOY2WDIBJOT35NW7KXR4","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GIJMH2D6HZYJYQTIARK4VHAX","name":"","sku":"74","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115728} +{"stream":"items","data":{"type":"ITEM","id":"CQ3ZRMA4PA3A7AGHI64OAKJT","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Write","description":"Week throw American pressure.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"7P6NOSPRPZMZRSUI4LPON5UA","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CQ3ZRMA4PA3A7AGHI64OAKJT","name":"","sku":"85","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"IIR2TVF5MCDTM6AV2JDYSOHK","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Court","description":"Bed see we general fall quality. Your onto third born measure imagine.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","variations":[{"type":"ITEM_VARIATION","id":"FMUOXK6DRMGBV2K5SBKA3TLG","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IIR2TVF5MCDTM6AV2JDYSOHK","name":"","sku":"18","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"U3WNLE5DTR4B3QWPHWIDN5KH","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Poor","description":"Charge environment until study.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"KCH7HR2J66RNF2ECY3PL6WXF","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U3WNLE5DTR4B3QWPHWIDN5KH","name":"","sku":"19","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"ZEDSQWU2T5CZTRZX6Z6F6HZ2","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Book","description":"Cut clear their discussion stock rich. Finally reveal job behavior.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"Z2RRVSP44LVKTOIV7QCJVBLO","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZEDSQWU2T5CZTRZX6Z6F6HZ2","name":"","sku":"23","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"3CEFUASFCTRBXLBHHNYCZ7HJ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"My","description":"Amount race door major impact. Guy ok about military character interesting.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"CD3EAQVXXE3RPL3WDJWMQDLV","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3CEFUASFCTRBXLBHHNYCZ7HJ","name":"","sku":"27","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"LONHB2QBA5MTFBANW7B5Q7VN","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Himself","description":"Change cover get option floor avoid share.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"5TRH73GCEHQA7SNQSNNAPKWI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LONHB2QBA5MTFBANW7B5Q7VN","name":"","sku":"47","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"QCQM4NRPE46YGLUG33HCL7K3","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Opportunity","description":"Argue necessary foreign man.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"IK3COGT2YZTLSJOLXGJZZ7Q6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QCQM4NRPE46YGLUG33HCL7K3","name":"","sku":"70","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"CJLBLCRBP36B5AA5UVHPUE57","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Benefit","description":"Son by south key customer candidate.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","variations":[{"type":"ITEM_VARIATION","id":"5VSVEPLNQ4KUQ6JIJCNOVHWJ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CJLBLCRBP36B5AA5UVHPUE57","name":"Common","sku":"73","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":14600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"DXB2PSESRQ5O2DVFXYJKJPLC","item_option_value_id":"GYVSBFP2MZC7UTCXIZTVJMEM"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"W3ORSEE7ETIAN4ANUQ64TGOQ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CJLBLCRBP36B5AA5UVHPUE57","name":"Social","sku":"73","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"DXB2PSESRQ5O2DVFXYJKJPLC","item_option_value_id":"Q7BZNJJDQ65EVSWBW6WQ2KV2"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"DXB2PSESRQ5O2DVFXYJKJPLC"}]}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"QS6HGREXZRRU3OSIKCNZYXDT","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sign","description":"Southern support matter risk put.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"TOE2FWVTAQWZD5JKMQBSR3VR","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QS6HGREXZRRU3OSIKCNZYXDT","name":"","sku":"79","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115729} +{"stream":"items","data":{"type":"ITEM","id":"UNOP2FCHPRAYVJUGKGEQJGPM","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Dark","description":"Cost look contain decide inside respond expect yes.","category_id":"J5Q2EAXIKYPJNRE2MZE23A7V","variations":[{"type":"ITEM_VARIATION","id":"NHGPP4QZMM2MDS5QCJNIWFDK","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UNOP2FCHPRAYVJUGKGEQJGPM","name":"","sku":"7","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115730} +{"stream":"items","data":{"type":"ITEM","id":"HUB4HL56XHUWR43TTMFMJ7CX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Real","description":"Section together help sign. Leave rock fall painting phone.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","variations":[{"type":"ITEM_VARIATION","id":"BM4KNOKTLSUWYNRYPV4N6OGH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HUB4HL56XHUWR43TTMFMJ7CX","name":"Guess","sku":"17","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":9600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"6WQQFZ5G7GP5EGD6355OUD2I","item_option_value_id":"BZGEKQVR3M6E6RPBYNTQZ4B4"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IVDO2TNNAMF4KMR3RSIDAOOO","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HUB4HL56XHUWR43TTMFMJ7CX","name":"Push","sku":"17","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"6WQQFZ5G7GP5EGD6355OUD2I","item_option_value_id":"CMRQORECYNVUXV634QPAL3GA"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"6WQQFZ5G7GP5EGD6355OUD2I"}]}},"emitted_at":1668290115730} +{"stream":"items","data":{"type":"ITEM","id":"64TBL3IWGBLWSKRZWV42VOIL","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"This","description":"Watch especially history news order tree similar.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"5ZCMVWMPIAGFV6GMD33YOTVH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"64TBL3IWGBLWSKRZWV42VOIL","name":"","sku":"32","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115730} +{"stream":"items","data":{"type":"ITEM","id":"OKFKYLPDY3DGQP5I52DBXG3E","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Meeting","description":"Himself find case feel include. Similar current time.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"IHKKCOHTOBXRSL7P45ZKYB2P","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OKFKYLPDY3DGQP5I52DBXG3E","name":"","sku":"44","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115730} +{"stream":"items","data":{"type":"ITEM","id":"L47WIBKG4MGSNPQO2R3UNIKH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Water","description":"Design note nice partner air. From first school rest protect grow.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"ESZIB2KVX5PLGFLTCMI44PIE","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L47WIBKG4MGSNPQO2R3UNIKH","name":"","sku":"62","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115730} +{"stream":"items","data":{"type":"ITEM","id":"XD6MCHTDGAH2R7PB7SEW46E4","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Leader","description":"Night civil first serious. Mrs site newspaper ago senior method professional.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"3XZUHHI2AIRMZLE2Q2ZBVFDH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XD6MCHTDGAH2R7PB7SEW46E4","name":"Note","sku":"66","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"UOCPGUZ4YHVG3PCNW2JJXPFA","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XD6MCHTDGAH2R7PB7SEW46E4","name":"Worker","sku":"66","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115731} +{"stream":"items","data":{"type":"ITEM","id":"ZLU6TUYALYFL2ZTM352ILYAT","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Middle","description":"Throughout much indeed live billion. Budget amount positive save turn.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"MGSVIJ3OFGV42JPB34ZZB4N6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZLU6TUYALYFL2ZTM352ILYAT","name":"","sku":"40","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115731} +{"stream":"items","data":{"type":"ITEM","id":"OZZNJ7IJUTKV7PTK6YIJGZUN","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Him","description":"Television late skill each. Eat important next worker wind.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","variations":[{"type":"ITEM_VARIATION","id":"KSZQBE7WYJ7U3IKFOQBEFTQ2","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OZZNJ7IJUTKV7PTK6YIJGZUN","name":"","sku":"54","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115731} +{"stream":"items","data":{"type":"ITEM","id":"KGZMSS7RRJ3VAN5M6UTOOK7L","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Pressure","description":"Guess experience office difficult ever president service knowledge.","category_id":"3HAZCNWXLQTQ3I5U6ZQLRLGK","variations":[{"type":"ITEM_VARIATION","id":"2B6IR25IUOTR4RQFQ6TRAJCQ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KGZMSS7RRJ3VAN5M6UTOOK7L","name":"","sku":"104","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115731} +{"stream":"items","data":{"type":"ITEM","id":"XBKX7YCLALSAB6OKVZSNUREK","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Happen","description":"Customer box soon science draw. Mind shake sometimes. Great clear a thought.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"BGWN3NCX7EMLVOOCX4WA6OR2","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XBKX7YCLALSAB6OKVZSNUREK","name":"","sku":"45","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115731} +{"stream":"items","data":{"type":"ITEM","id":"ROREJY2SXHIYDY7JNSKUY43W","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Discuss","description":"Both myself result help its professor. Structure news type once.","category_id":"3HAZCNWXLQTQ3I5U6ZQLRLGK","variations":[{"type":"ITEM_VARIATION","id":"5QZKAWSQ62VRVRTGRROTUUNA","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ROREJY2SXHIYDY7JNSKUY43W","name":"","sku":"103","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115731} +{"stream":"items","data":{"type":"ITEM","id":"ZGC5LON4JC7RTAF23ANCRARN","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lot","description":"Father group kid today fund. Most anything age.","category_id":"J5Q2EAXIKYPJNRE2MZE23A7V","variations":[{"type":"ITEM_VARIATION","id":"VGZSG43UZBGZIN4R6CTNHILX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZGC5LON4JC7RTAF23ANCRARN","name":"","sku":"8","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115732} +{"stream":"items","data":{"type":"ITEM","id":"VXIEZLXZAF5WQM6WACSV3FP2","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Station","description":"Father one take see my responsibility wait.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","variations":[{"type":"ITEM_VARIATION","id":"CDBJBCXW7AL4RSDZJHZWECWL","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VXIEZLXZAF5WQM6WACSV3FP2","name":"","sku":"12","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115732} +{"stream":"items","data":{"type":"ITEM","id":"O2DTZNMVPCMAAGURUYJZBU6U","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Can","description":"Fear natural pick. Mind grow bit plan little.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","variations":[{"type":"ITEM_VARIATION","id":"ZJHUXPIGF4ZGQRIISGXZGJPE","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O2DTZNMVPCMAAGURUYJZBU6U","name":"","sku":"14","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115732} +{"stream":"items","data":{"type":"ITEM","id":"NTOKB4SGQS6JIYGQEKPUWNFN","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Increase","description":"Yard adult administration have respond push. Rule only face model.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"K5WFNNVZNITZOXANF75AM5MY","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NTOKB4SGQS6JIYGQEKPUWNFN","name":"","sku":"24","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115732} +{"stream":"items","data":{"type":"ITEM","id":"TPZRAW7G3ZAH4GKRFRDCNPQC","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Color","description":"Wear job matter dog spend bad. Bit body address administration.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"HT7OICLPKPMEEJONSUCJIH5C","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TPZRAW7G3ZAH4GKRFRDCNPQC","name":"Its","sku":"26","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DPZRM5WGJTUTVWC3Q3SB2S2V","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TPZRAW7G3ZAH4GKRFRDCNPQC","name":"Try","sku":"26","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115732} +{"stream":"items","data":{"type":"ITEM","id":"PIREGAEJGOZ4RIEQI65MOSLU","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Create","description":"Can finally natural stop energy manage.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"TTTLEK63OSBMCQ6TEHB3JBBU","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PIREGAEJGOZ4RIEQI65MOSLU","name":"","sku":"38","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115733} +{"stream":"items","data":{"type":"ITEM","id":"B2XVV6SYE63YRC7ODJ5SI6YW","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Move","description":"Just wind buy. Tough bed activity work sing range.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"35O6CVWZW7RUMFY4QD7ZSMTY","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B2XVV6SYE63YRC7ODJ5SI6YW","name":"","sku":"35","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115733} +{"stream":"items","data":{"type":"ITEM","id":"KC2WBB2PFTEVFJINIPHK7BFV","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Civil","description":"Note today high hospital eye authority machine. World claim training million.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","variations":[{"type":"ITEM_VARIATION","id":"U4FK6HK6JIATXZIOY6FNTZ2R","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KC2WBB2PFTEVFJINIPHK7BFV","name":"","sku":"52","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115733} +{"stream":"items","data":{"type":"ITEM","id":"KDWVC4C2R2KADNUYNJP5W74P","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Carry","description":"Financial money service job effect military interest.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","variations":[{"type":"ITEM_VARIATION","id":"TVHPQDIMT5WG3AMJ5WFH4AEB","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KDWVC4C2R2KADNUYNJP5W74P","name":"","sku":"80","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115733} +{"stream":"items","data":{"type":"ITEM","id":"YT5YOXWNQ3QHOYNMAKRWAGMN","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Social","description":"Home natural price. Scientist action or together. Phone view central.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"WNYXDZBIVBM2KVPJLZOBHINU","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YT5YOXWNQ3QHOYNMAKRWAGMN","name":"","sku":"82","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115733} +{"stream":"items","data":{"type":"ITEM","id":"BXFA6JTQTNZMJPISR5L4NQF3","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Must","description":"At world federal hot. Painting surface church nothing himself concern can.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"JAW3KD5DZEBKGIH2FF2SC5EK","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BXFA6JTQTNZMJPISR5L4NQF3","name":"","sku":"92","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115733} +{"stream":"items","data":{"type":"ITEM","id":"P2SWRIKGHPJ3ZSNKUZKZEKFT","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Light","description":"Government effect yet dark fast movie such. Together report station treatment.","category_id":"3HAZCNWXLQTQ3I5U6ZQLRLGK","variations":[{"type":"ITEM_VARIATION","id":"WXVNOJRGQOA2DO3NGWNMJ5AW","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P2SWRIKGHPJ3ZSNKUZKZEKFT","name":"Guy","sku":"101","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WLIL37YPMWHLLRU3UTSVYTRD","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P2SWRIKGHPJ3ZSNKUZKZEKFT","name":"Accept","sku":"101","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115734} +{"stream":"items","data":{"type":"ITEM","id":"2ECOBLZJW2FV3SOKXBEUK7FA","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Suffer","description":"Future long author job toward picture majority structure.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"TFUDOXBIRDS7FYT3S3DE2YAF","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ECOBLZJW2FV3SOKXBEUK7FA","name":"","sku":"88","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115734} +{"stream":"items","data":{"type":"ITEM","id":"MBHO73GSGJO6IK3L7PAXYSYV","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Large","description":"Less part high smile newspaper family customer.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","variations":[{"type":"ITEM_VARIATION","id":"OZRNA2VDVGBHRZQDA7NCBZB3","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MBHO73GSGJO6IK3L7PAXYSYV","name":"Everything","sku":"16","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NLZR4XVGCK2PT4BQGYFE5WZI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MBHO73GSGJO6IK3L7PAXYSYV","name":"Worry","sku":"16","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115734} +{"stream":"items","data":{"type":"ITEM","id":"HGNXVU2IIXWZHZSRQKQJIJPF","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Firm","description":"Read could area half. Everyone break beat black board.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"POWD7BXX47FNFHN7CTFYSYSZ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HGNXVU2IIXWZHZSRQKQJIJPF","name":"","sku":"37","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115734} +{"stream":"items","data":{"type":"ITEM","id":"VUIAEUO4CRHP76FMXHMMCJA6","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Difference","description":"Bad fact almost. Mention benefit campaign officer.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"Y6R2ETGWUKYO2MSECUYAME54","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VUIAEUO4CRHP76FMXHMMCJA6","name":"","sku":"58","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115734} +{"stream":"items","data":{"type":"ITEM","id":"WKPUPRGOX43FMCVJYMGVQN5Y","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Itself","description":"Director also question exactly. Have show actually land us base.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"TAHCBAXBUD3V33CI3UFBM6M6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WKPUPRGOX43FMCVJYMGVQN5Y","name":"Draw","sku":"61","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NPLBQPKO5B6M2GVZM6ECIDS5","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WKPUPRGOX43FMCVJYMGVQN5Y","name":"System","sku":"61","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115734} +{"stream":"items","data":{"type":"ITEM","id":"M6XKONQAENEWMXAL655LTQ46","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Soldier","description":"Stage short during realize. Similar authority red feel order.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","variations":[{"type":"ITEM_VARIATION","id":"N3TRPJVAGHWFG7DTDQWKVBDF","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"M6XKONQAENEWMXAL655LTQ46","name":"Free","sku":"76","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TQQENG5VOHWXUMET32YBUVHJ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"M6XKONQAENEWMXAL655LTQ46","name":"Trade","sku":"76","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115735} +{"stream":"items","data":{"type":"ITEM","id":"M5LCJ2VKE4QJFRFEWF32IR5H","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Former","description":"War address surface reveal amount make.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"3WQSF2HAKOFY6ZYPAZYAL5HP","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"M5LCJ2VKE4QJFRFEWF32IR5H","name":"","sku":"87","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115735} +{"stream":"items","data":{"type":"ITEM","id":"TGC5NFS7KYNOF6YN76WP4TYD","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Next","description":"Recently official return account blue.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"P445VVL75NDWQKK6XMD3EJ66","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TGC5NFS7KYNOF6YN76WP4TYD","name":"","sku":"30","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115735} +{"stream":"items","data":{"type":"ITEM","id":"JWSXK2MPQL5GBRKHZA475SEN","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Me","description":"Administration expert section single.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"A3ZB3YTNUT32LB45CWXICNTE","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JWSXK2MPQL5GBRKHZA475SEN","name":"Spring","sku":"46","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RHYK6WIGWV4UTGJNUTIPF4GB","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JWSXK2MPQL5GBRKHZA475SEN","name":"Interesting","sku":"46","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115735} +{"stream":"items","data":{"type":"ITEM","id":"IWMQABHVCWRJHK4BIZYGEW4M","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Human","description":"Want serve administration say. Person receive find very really.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"EMY76DYEHMM7I4A7VDQOXKSA","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IWMQABHVCWRJHK4BIZYGEW4M","name":"","sku":"67","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115735} +{"stream":"items","data":{"type":"ITEM","id":"MUVTDC6FJRF6PJ6G6SZWYD5G","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Few","description":"Discover nation matter opportunity be would.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","variations":[{"type":"ITEM_VARIATION","id":"I7Z4BDFDT6FDKUT2UKM6GZKH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MUVTDC6FJRF6PJ6G6SZWYD5G","name":"","sku":"72","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115735} +{"stream":"items","data":{"type":"ITEM","id":"NUH2FLNZKWQVZ4DIKGQCACY6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Discuss","description":"Tough cost which rate film yourself.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"CFEKIPAOVBROYM3OVVICRHTQ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NUH2FLNZKWQVZ4DIKGQCACY6","name":"","sku":"84","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115735} +{"stream":"items","data":{"type":"ITEM","id":"ABAOUXPQ4UKYKPPOLUKT5H43","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Positive","description":"With value activity onto. Throw gun evening large young different.","category_id":"3HAZCNWXLQTQ3I5U6ZQLRLGK","variations":[{"type":"ITEM_VARIATION","id":"V7BLW7VPPQZ3BUICRR2MKSOI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ABAOUXPQ4UKYKPPOLUKT5H43","name":"","sku":"102","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115736} +{"stream":"items","data":{"type":"ITEM","id":"YZRP5SDHDOQ2IIAJGRDZASGB","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hundred","description":"Role set word. Either movement attack every perhaps happen number.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"YLB2HNUIJGS4ZXXSILPXIKLV","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YZRP5SDHDOQ2IIAJGRDZASGB","name":"Computer","sku":"41","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"D7WEHQTBXWJHE6XOGS37PFWP","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YZRP5SDHDOQ2IIAJGRDZASGB","name":"Computer","sku":"41","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115736} +{"stream":"items","data":{"type":"ITEM","id":"YOMMEDMRZ3HMD7W22MVPNTBO","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Music","description":"Soon put front blood. Plan red material although tax same.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"JENY2E7RXUODH4DNMK6VK5GT","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YOMMEDMRZ3HMD7W22MVPNTBO","name":"Nothing","sku":"49","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":13200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"3TDWKSJG3RMPGAO67SJLW65H","item_option_value_id":"7OXL4NKAJYHBTYPB5LMQQDSH"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DVGNVNZ7YFL3O3SDC7ONJG5A","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YOMMEDMRZ3HMD7W22MVPNTBO","name":"Guess","sku":"49","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"3TDWKSJG3RMPGAO67SJLW65H","item_option_value_id":"QAH347MPKYPKABBWWR3GINVV"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"3TDWKSJG3RMPGAO67SJLW65H"}]}},"emitted_at":1668290115736} +{"stream":"items","data":{"type":"ITEM","id":"2QTEANVBZU7IJHIKB64RBU4L","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Remain","description":"Purpose minute occur indicate interesting commercial edge keep.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"YIRTDI4Q7JWNJKS3XAZPNDUW","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2QTEANVBZU7IJHIKB64RBU4L","name":"","sku":"69","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115736} +{"stream":"items","data":{"type":"ITEM","id":"X2AHRA2ITQZ5NULJW57S22FM","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T21:56:26.794Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Action","description":"Sometimes later go improve tonight.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"TPIQ2YTRBWLUOLY6YBVRAOAL","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X2AHRA2ITQZ5NULJW57S22FM","name":"","sku":"75","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115736} +{"stream":"items","data":{"type":"ITEM","id":"CC6366L7NNV5LYS2NUIDF7GD","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Record","description":"Nature computer site end cell. Rest camera card beyond.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"L3N4CXNTXBWHDLBOHLTJNV55","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CC6366L7NNV5LYS2NUIDF7GD","name":"During","sku":"97","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":24900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PJWTXB5DCDQIKYGGMQK7WA4M","item_option_value_id":"PKCB2X4DL6AWFBCAAPVU3PLM"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"Z53OI7NMAXWZ6NZECZVDGVLE","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CC6366L7NNV5LYS2NUIDF7GD","name":"Pm","sku":"97","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PJWTXB5DCDQIKYGGMQK7WA4M","item_option_value_id":"UDGGGGL6NSPI4EG5H3ERQ637"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"PJWTXB5DCDQIKYGGMQK7WA4M"}]}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"L3OSSXTBRGLKDZ5XFRA7RNR6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Itself","description":"Fall at imagine miss enough amount local.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"5POS3YR6L3XVHQNCLG7OIQQM","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L3OSSXTBRGLKDZ5XFRA7RNR6","name":"","sku":"100","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"AA2MQIAAZGAI3A37VNSMLX6I","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fine","description":"Young financial fast huge quite like decide.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"AZPS6MOUZ6XW67IUF3QLZY3N","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AA2MQIAAZGAI3A37VNSMLX6I","name":"","sku":"63","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"4LJIJZYKLBBR5SMNPHUWEQBS","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Professional","description":"Usually both sure skill itself. Majority parent beautiful set.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"IB42P6LGOU4N3YTZ2A4LCL5R","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4LJIJZYKLBBR5SMNPHUWEQBS","name":"","sku":"99","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"HWTB6UD45W72SJARSMOIWOH5","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Teach","description":"Scene each turn sister my.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","variations":[{"type":"ITEM_VARIATION","id":"5IEIGULXUG7A3MXL26XQVZE3","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HWTB6UD45W72SJARSMOIWOH5","name":"","sku":"15","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"WKOM4TGCUTMUG5OUDV23OLAM","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Center","description":"Science son avoid bit we act top. Education ever over democratic.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"UHVTNLXWOVXQMVOOFKE5G7IF","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WKOM4TGCUTMUG5OUDV23OLAM","name":"","sku":"22","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"QO2H5B7IX5QHROXJE6V7O4ZL","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yet","description":"Plan research hold plan. Today establish smile full major field.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"J3M4KD4VQCR33W3NXHKRIRGB","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QO2H5B7IX5QHROXJE6V7O4ZL","name":"","sku":"29","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"WTQAAWIC7FLE3GSGQUOTOKMZ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Show","description":"Traditional behavior dream expect. Defense they far speak character class hold.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"U4AXDH2RRVCQMCDKFFALKB2F","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WTQAAWIC7FLE3GSGQUOTOKMZ","name":"","sku":"34","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"HXMCVJDZ6AVTNYFLUVEDRWEX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bar","description":"Speak situation successful information small teach.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"TZJSD5I3NYPV4ZFWCK5DLMVB","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HXMCVJDZ6AVTNYFLUVEDRWEX","name":"","sku":"42","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"DU3NZTPSNWUQDY7PAEFCAHDH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Exist","description":"Defense hand environment enjoy capital. Hundred state more bad.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"WGJG7PIE5XNV7IVCLR72NITI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DU3NZTPSNWUQDY7PAEFCAHDH","name":"","sku":"50","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115737} +{"stream":"items","data":{"type":"ITEM","id":"TOD5MVQV7QGQZECAG2737L3F","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hundred","description":"Happy western cause half place. Strong enjoy buy mean.","category_id":"J5Q2EAXIKYPJNRE2MZE23A7V","variations":[{"type":"ITEM_VARIATION","id":"4MLRZ75GUT3HPC477K5LMYVU","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TOD5MVQV7QGQZECAG2737L3F","name":"","sku":"10","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"2HIU5ZSQFC7PYJO4O5LNVPZG","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Structure","description":"Thought usually threat return maintain. Rate rich enter point arm hear natural.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"ZP5BCHBMXY3KZ2UKC25LDBBX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2HIU5ZSQFC7PYJO4O5LNVPZG","name":"Area","sku":"36","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LY622DJ3HOXD6FPBT6KTHVPR","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2HIU5ZSQFC7PYJO4O5LNVPZG","name":"Among","sku":"36","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"A3M733X3YOJMQZQ6ZB4G2VXI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Perform","description":"Green after minute bit. Beautiful late design professor avoid since course.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","variations":[{"type":"ITEM_VARIATION","id":"QVY22PLK3WG2AM5F2Y6XFIKD","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"A3M733X3YOJMQZQ6ZB4G2VXI","name":"Me","sku":"56","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"GSJJNTG3RPNB2A7NTUE5G7FJ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"A3M733X3YOJMQZQ6ZB4G2VXI","name":"Politics","sku":"56","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"DTJ73UE2LLFVEQ5M7XGIM3LD","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Public","description":"Energy painting box cover national land provide.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"XVNS4MK3S752ZIGHMIGG2QJD","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DTJ73UE2LLFVEQ5M7XGIM3LD","name":"","sku":"68","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"QUHB2BOHV3LNBZHYCAJUQLKP","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Voice","description":"Indicate help want long budget soon shoulder. Car their may down change.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"EEXBEZEHJJ3B6AGWDHERKVHS","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QUHB2BOHV3LNBZHYCAJUQLKP","name":"","sku":"93","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"ZFKNEQCJMEDCFVEFXHB2EDXC","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Make","description":"Mention send test benefit public clearly. Reveal expect city defense enjoy.","category_id":"DNYM5VGVTI75QYEAPOZOESLG","variations":[{"type":"ITEM_VARIATION","id":"O2YB5AUDZ2PIUA2IPCTWMZU6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZFKNEQCJMEDCFVEFXHB2EDXC","name":"","sku":"39","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"NVDIN2KVRCQ7RMIMZUOPTXLT","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Assume","description":"Language where instead future Mrs. Fear perform hair dream four.","category_id":"H57NYT6SFNXEWZPIUWQW3XPV","variations":[{"type":"ITEM_VARIATION","id":"UPHQXJAGDN3L6FAZRDUBBSOF","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NVDIN2KVRCQ7RMIMZUOPTXLT","name":"","sku":"48","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"W55A5ZMJ5HODBWYSFZGXH6YP","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Product","description":"Station six after throw wrong season set or.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","variations":[{"type":"ITEM_VARIATION","id":"FVEF5HBTFU7RLBP45VXFR7UI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"W55A5ZMJ5HODBWYSFZGXH6YP","name":"Science","sku":"51","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DVHN4ZQ2ILMOXOWL7VYHRDSY","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"W55A5ZMJ5HODBWYSFZGXH6YP","name":"Without","sku":"51","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":22300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"O4PVGYTVTZW43BLMSUX37XOV","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Before","description":"Power religious agree degree cut tree wife.","category_id":"FIMYVNYAQ3JS337TP6YBQBBQ","variations":[{"type":"ITEM_VARIATION","id":"TZ25T3CX3TIKQE7EGHCYMMVG","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O4PVGYTVTZW43BLMSUX37XOV","name":"","sku":"59","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"47DWL2BL34D35N45CMX35UUI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Draw","description":"Arrive huge while civil rule. Coach carry color idea together.","category_id":"5UPKZKY4OEGOEE5Y667AW2CH","variations":[{"type":"ITEM_VARIATION","id":"2IRZ5FEFWDRDWGAPTMIWBMV4","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"47DWL2BL34D35N45CMX35UUI","name":"Hand","sku":"71","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IEWX52UGAJVZ75ON7DB5CMLH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"47DWL2BL34D35N45CMX35UUI","name":"Want","sku":"71","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":22200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115738} +{"stream":"items","data":{"type":"ITEM","id":"QWPCLWS3CHKC6EFG4WZGT3EH","updated_at":"2021-06-10T22:17:32.995Z","created_at":"2021-06-10T21:56:26.794Z","version":1623363452995,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"By","description":"Always purpose event whole. Too soldier feel huge TV pattern future.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","modifier_list_info":[{"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V","visibility":"PUBLIC","min_selected_modifiers":-1,"max_selected_modifiers":-1,"enabled":true}],"variations":[{"type":"ITEM_VARIATION","id":"DZTIUWYPXHJ6ZZJE3W3C3YFJ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QWPCLWS3CHKC6EFG4WZGT3EH","name":"","sku":"83","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115739} +{"stream":"items","data":{"type":"ITEM","id":"EK6BIH53ZTPAZWANNMEIMUPZ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Positive","description":"Direction business may sure oil maybe example TV.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","variations":[{"type":"ITEM_VARIATION","id":"LGZUQA4CHAIHTATHTW24VWPS","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EK6BIH53ZTPAZWANNMEIMUPZ","name":"","sku":"13","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115739} +{"stream":"items","data":{"type":"ITEM","id":"ILY36ULIV3NEVSYAWOYWM3MK","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Daughter","description":"Billion sign have size would best. Me old paper heart right lead.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"BJTYP4H6CLAXL7ECZKJ3EOMX","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ILY36ULIV3NEVSYAWOYWM3MK","name":"Exist","sku":"21","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BT5J7MNXEFOYNT5U5IH56M7R","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ILY36ULIV3NEVSYAWOYWM3MK","name":"Easy","sku":"21","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115739} +{"stream":"items","data":{"type":"ITEM","id":"MWMXFRYT53WVBGWCKBAJ6FZS","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Many","description":"Present state area easy deep apply carry. She professor culture consider.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"C4MPH3RJTRWQHBE45SYBTFAJ","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MWMXFRYT53WVBGWCKBAJ6FZS","name":"Clearly","sku":"65","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":19700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"VC2XME6HPTME66WF4LPNJIF7","item_option_value_id":"UMQHRDOAAY4THFOHYILVLBQI"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7IS47V2YNZN7RGS7E7IWN3MF","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MWMXFRYT53WVBGWCKBAJ6FZS","name":"Necessary","sku":"65","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"VC2XME6HPTME66WF4LPNJIF7","item_option_value_id":"NO4ZMZMZAT3OYCTSL6QVPYDN"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"VC2XME6HPTME66WF4LPNJIF7"}]}},"emitted_at":1668290115739} +{"stream":"items","data":{"type":"ITEM","id":"NV5ZZWRULDICY6USIJP3SPPN","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Toward","description":"Us figure Congress born type item east. Or each develop remain today economy.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"AKA25TB4ZCJ4XA3CUXPLNHYO","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NV5ZZWRULDICY6USIJP3SPPN","name":"Result","sku":"86","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IMR3QY4XEJRZJ2FRPEMCBFPO","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NV5ZZWRULDICY6USIJP3SPPN","name":"People","sku":"86","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115739} +{"stream":"items","data":{"type":"ITEM","id":"H3BYSDWU2MOGJ6BNJM54V5TM","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"These","description":"Off hear phone unit. Enough to choice so detail.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"FXAULT3LD4BBMGYXYNTHW7UH","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H3BYSDWU2MOGJ6BNJM54V5TM","name":"Consider","sku":"96","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BXFBIDZU7AGFFWQRD3DL5HTI","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H3BYSDWU2MOGJ6BNJM54V5TM","name":"Generation","sku":"96","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115739} +{"stream":"items","data":{"type":"ITEM","id":"HOVKMWKO7LZUIQT5T4U36KZD","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Soon","description":"Present third quickly alone boy enough lead. Cause door discuss support model.","category_id":"XWH36QTW2BSOFUPDF57GDE4V","variations":[{"type":"ITEM_VARIATION","id":"HW5STBJN3IX2LAERMCUVTZH6","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HOVKMWKO7LZUIQT5T4U36KZD","name":"Few","sku":"11","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QIL6XYJE5QBTTVKJDV35LFOF","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HOVKMWKO7LZUIQT5T4U36KZD","name":"Create","sku":"11","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":27200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115739} +{"stream":"items","data":{"type":"ITEM","id":"4GFNUKBF4J53C7EEQPHGOBPK","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"We","description":"Poor before citizen figure. Ok policy second find less imagine order.","category_id":"F6H7XOLU4RHSYTBCO7L5R3AI","variations":[{"type":"ITEM_VARIATION","id":"WPM4T3STEL3WSPSISXGWAQOA","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4GFNUKBF4J53C7EEQPHGOBPK","name":"Sound","sku":"25","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":2700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RULU7OMCMBJK5L4AIRZ4HXJZ","item_option_value_id":"RJU2ZVQJOFEXFVVRSLPU2JT3"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"UPGXL37GJLFXEPD4XGQWII4H","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4GFNUKBF4J53C7EEQPHGOBPK","name":"Yet","sku":"25","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RULU7OMCMBJK5L4AIRZ4HXJZ","item_option_value_id":"AOAWC4VMXG7PG5N3NAXS3VZL"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"RULU7OMCMBJK5L4AIRZ4HXJZ"}]}},"emitted_at":1668290115739} +{"stream":"items","data":{"type":"ITEM","id":"QCAIAR5ACD6SKVXHO7MFQMLL","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Also","description":"Blood interview only admit deal care.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"WICVAV354WXCAIXFZADMOFT5","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QCAIAR5ACD6SKVXHO7MFQMLL","name":"","sku":"94","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"RPCB7XIOQOHZGKTUDQEUH26E","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Garden","description":"Relate summer physical source. Only art choice part.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"2VIEX6YGD4URYHNVQJMMVVTT","updated_at":"2021-06-10T21:56:26.794Z","created_at":"2021-06-10T21:56:26.794Z","version":1623362186794,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RPCB7XIOQOHZGKTUDQEUH26E","name":"","sku":"98","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"CWWB34TQY5SX7IL7DAON7CVD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Family avoid","description":"Want hit when language condition than sort. Set force bill boy.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"WHXZKP6A4MPOPA427OGIZT7I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CWWB34TQY5SX7IL7DAON7CVD","name":"","sku":"269","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"KVPA7QE3YIFVG3XOSJMB44NT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Executive hope","description":"Not explain key five keep baby whether. View job cup pressure.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"ZTH6W5UJXQLA44QYFIZZ7D4M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KVPA7QE3YIFVG3XOSJMB44NT","name":"","sku":"765","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"2ETCVT3HVPLN4YL65AVAKELY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Might his","description":"Range sure key everybody alone. Most trade probably cause.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"KC4X7OJGI3SHB3EHKMWZPICI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ETCVT3HVPLN4YL65AVAKELY","name":"","sku":"847","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"TKV4G2OQIO3EOQF672AKDKMJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Recent now","description":"Father contain candidate church reflect fear happen.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"B6IKGRKGGOSNUA4GSKEZR47I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TKV4G2OQIO3EOQF672AKDKMJ","name":"","sku":"679","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"DRH3J3HAYVJDFIRWTPNTCEU5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Base of","description":"Edge thus talk whole next. Report read event ok realize relate majority.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"DVSLFJS5W3HHYDEZDDKR7BK6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DRH3J3HAYVJDFIRWTPNTCEU5","name":"","sku":"1043","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"7JEGL3OZGYGPGNYABEHX3H44","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Light resource","description":"Idea although source standard know. Activity find occur water stock throughout.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"W5FB7E7VHYUOMDVE4ZI4HGDG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7JEGL3OZGYGPGNYABEHX3H44","name":"","sku":"195","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"SWVUPEO3M5UCVTAAR6677AQP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Every similar","description":"Much find receive. Real pull anything score ago think.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"TKVDAM4HCF77WTRBOQXLESC7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SWVUPEO3M5UCVTAAR6677AQP","name":"","sku":"578","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"JR5OQCYRHEXAPWDEGQKGIJMJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sound focus","description":"Central level coach modern. Morning describe necessary role star month.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"KUXROB2LWU4A2MUV6PWFZCOT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JR5OQCYRHEXAPWDEGQKGIJMJ","name":"Light","sku":"591","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FGL7B2U5V4TQM7PO7QYPC6QP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JR5OQCYRHEXAPWDEGQKGIJMJ","name":"Through","sku":"591","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115740} +{"stream":"items","data":{"type":"ITEM","id":"G3IOC6NU3HYQVIPS7KOF5UHN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Medical hotel","description":"Character themselves born about must democratic particular.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"ZLYHUK6AHTJ4FXGKLNQ4IHO4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G3IOC6NU3HYQVIPS7KOF5UHN","name":"Involve","sku":"646","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"THF6BVN53Y2RJUOMW7DN6GO7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G3IOC6NU3HYQVIPS7KOF5UHN","name":"Short","sku":"646","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":25800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"H7WC63ZGRCQHLLRK67FA5RRQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Or appear","description":"Congress reason job add almost capital garden company.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"TQXB2IE4D52XBOSAHN4ZXSDZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H7WC63ZGRCQHLLRK67FA5RRQ","name":"","sku":"872","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"P6ICNP7ZQ23HOA55BE3KD7QA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fill bit","description":"Might others as land history rich find moment. Where decide Congress strong.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"5QBEZOFOSARGGEKIHBJ33UFW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P6ICNP7ZQ23HOA55BE3KD7QA","name":"","sku":"994","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"LIWE4SHQI753WTVDLXJ7NGM6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Scientist drug","description":"Owner whom southern number level ground president.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"R6EM7T56QPFV5225S52DPZ4E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LIWE4SHQI753WTVDLXJ7NGM6","name":"","sku":"173","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"EUHNXOUBNESPUWBIFCIVYCU4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Language southern","description":"Painting smile such bill mission pretty. Wide choose two color factor whatever.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"C52KVH62WBWKYTQ7AAITBQJL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EUHNXOUBNESPUWBIFCIVYCU4","name":"","sku":"323","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"JRIUEDALSKLLTXDKYUV3NKCS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"None green","description":"Open professional town over. Fish arm significant. Could recognize thank on.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"CPWDWFFAHG4653J3X7SSEMGH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JRIUEDALSKLLTXDKYUV3NKCS","name":"Official","sku":"856","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NY6I7HTQNC6VVX3BYY5QZXRD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JRIUEDALSKLLTXDKYUV3NKCS","name":"Billion","sku":"856","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":9500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"U6L4HO7HS6IXOOGFE2GBFS34","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Adult remember","description":"Student left never word ahead story final.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"BZXRCROLP6CXYVTLCRL3SXOJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U6L4HO7HS6IXOOGFE2GBFS34","name":"","sku":"748","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"OI32AQ4HN6LVTIW7N2LBCKLU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ground attention","description":"Family else degree example tell strong sell.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"RNEDFLYXONGAK3OQPMR2ZC7O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OI32AQ4HN6LVTIW7N2LBCKLU","name":"","sku":"154","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"QJ2VU4ODGFNIVLKVQNQP4RJG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Story charge","description":"Direction different course maybe commercial just manager.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"PXV5F2JG3ULUKPU7GGHOLLNY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QJ2VU4ODGFNIVLKVQNQP4RJG","name":"","sku":"228","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115741} +{"stream":"items","data":{"type":"ITEM","id":"7OJTZZEMRW27H7VGSC5FQH7B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lay usually","description":"Above TV ball. Audience Mr teach wall choice record surface.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"AA7W3YNLW7VNW6S5KKCZ2XAP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7OJTZZEMRW27H7VGSC5FQH7B","name":"","sku":"258","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"UNQXQIJQ42O2ZLSWEGLWTFLH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thus tend","description":"Television media while. Itself nice boy kind kind anything article.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"J44BNP6WDDBH2P2HRXJKCIUI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UNQXQIJQ42O2ZLSWEGLWTFLH","name":"","sku":"299","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"GIY4TI3LGLIOLF2RF7MDBBAF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Brother capital","description":"Question husband others hair machine happy. I area control technology.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"KVZACZM7TJQBHMQTJLCG2YDM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GIY4TI3LGLIOLF2RF7MDBBAF","name":"","sku":"349","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"C5BVY53UISO4SAZKBZZSZQA3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Left miss","description":"Worker mean recognize security be face. Language foreign something around.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"PLSK6QE3SJG3XOYLN6RZTTRC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C5BVY53UISO4SAZKBZZSZQA3","name":"From","sku":"566","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"67EPXK6DC3AULKUZO725CJVR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C5BVY53UISO4SAZKBZZSZQA3","name":"Water","sku":"566","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":30000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"GRGZBYCPZGNCPEVJUDRA65NJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Under race","description":"End lot itself front more wonder. Girl hard every simple.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"PB4MQ6J6HHNT6HYULR77YWSK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GRGZBYCPZGNCPEVJUDRA65NJ","name":"","sku":"739","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"HRCNWJVKPDS4D2YJV5JQ25Y6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Maybe yourself","description":"Old new red low six. Establish when little.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"2AOUQNN7MZMQUQPBRH5IB4BT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HRCNWJVKPDS4D2YJV5JQ25Y6","name":"","sku":"1092","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"Y6N6U5B4EIUDDSPBBVR5LPHE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Class approach","description":"Always own along small others toward series think.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"HGZGRARYAYDVYZWKY7DF7WY2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y6N6U5B4EIUDDSPBBVR5LPHE","name":"","sku":"310","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"4K7HOVNHMHRNYRLC2M33GR34","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Vote develop","description":"Ever government window manage chair. Do head position thus policy near.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"7BAZXJ7SBLGGNF3HRLLU2S6J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4K7HOVNHMHRNYRLC2M33GR34","name":"","sku":"354","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"UBWXTU4OKB5SPFIOARBKBAMV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Church stand","description":"Home behavior rate American key floor wrong.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"YZ2YTG2ZT4QOPVZQQV26IEUO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UBWXTU4OKB5SPFIOARBKBAMV","name":"","sku":"388","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115742} +{"stream":"items","data":{"type":"ITEM","id":"JJA7J3KNERIN5237BDOY4ND2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Interest wear","description":"Market perhaps economic trouble reflect same.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"H47L5O26TN5SW7BEDNS25DD3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JJA7J3KNERIN5237BDOY4ND2","name":"","sku":"627","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"H7ATZF2LQNIPG565XNBYJ2BB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Program soon","description":"Hope teach plan friend seem news five business.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"VX6WG7CNYXMWPUES367ZZM6X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H7ATZF2LQNIPG565XNBYJ2BB","name":"Identify","sku":"636","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TKQ3TIEYCMKF5PKYEWLQE5MQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H7ATZF2LQNIPG565XNBYJ2BB","name":"Hold","sku":"636","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"U6NBMO7ES5HZPUNT5J35PYMI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Cause space","description":"Decision create soldier father movie security hair.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"OZJJMNHFIATZJ3K5WNGJVEJG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U6NBMO7ES5HZPUNT5J35PYMI","name":"","sku":"725","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"4Z3GDRW4IWLDC66OAHWAXHJD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Financial director","description":"Hundred maybe hold because father inside. Rate face space resource.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"P77WFS4ZSG2JXLF4PYMF4VSP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4Z3GDRW4IWLDC66OAHWAXHJD","name":"Behind","sku":"171","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7NZGJHQF5YEUDDMSP2VXKHCG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4Z3GDRW4IWLDC66OAHWAXHJD","name":"Have","sku":"171","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"LWTSGLAAQBXGDEHUARAD3QDK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"International when","description":"Management last enjoy special suggest job.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"7F62YIUUNMKHGEA7UBXIIWL7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LWTSGLAAQBXGDEHUARAD3QDK","name":"","sku":"463","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"3EFEDNZXQBF5OLT7XQV3GMCE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Continue anything","description":"Letter somebody position commercial. Trade evening hold soon.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"GU3IZM7CSRUN4UA6FO5KOUGE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3EFEDNZXQBF5OLT7XQV3GMCE","name":"","sku":"933","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"U4UDXCJH6BDDMD57D2KHU3EH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Cell price","description":"Start trip near base agreement according. Stay myself kind.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"CRGIS5SCGRKMDQXLINCDU6CU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U4UDXCJH6BDDMD57D2KHU3EH","name":"Team","sku":"465","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":22100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"F4DP5AWDUUVXULOFJKPORXUU","item_option_value_id":"HX4VIJKEAA6E3BGXGVZYI3MF"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6GWIHUPHLGBJJ33ZEMDA4NJ5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U4UDXCJH6BDDMD57D2KHU3EH","name":"Recently","sku":"465","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"F4DP5AWDUUVXULOFJKPORXUU","item_option_value_id":"WCGMDWZ7WGVMA24OXXCY34NS"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"F4DP5AWDUUVXULOFJKPORXUU"}]}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"BBWRGVPIVOGDDGMY55UWOJEM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whose college","description":"May high adult. Police option under section talk second read.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"3M6AEXWMIGIIWO7MHUFHSY5O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BBWRGVPIVOGDDGMY55UWOJEM","name":"","sku":"1099","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"DY6UBFUAFBA7BGYMHSKSZQNL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Population book","description":"This become mean strong. Way mind nothing peace forward true interesting arm.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"GW3FDBWKMUI2XTXVFC3RIH5Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DY6UBFUAFBA7BGYMHSKSZQNL","name":"","sku":"685","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"H4INLXTB3EV5MKA3LAUPAAZF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Low human","description":"Almost join method single rich support reality. Series my choice tree social.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"NDY23BH7RJYE4HV7HE4J6CVZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H4INLXTB3EV5MKA3LAUPAAZF","name":"","sku":"770","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115743} +{"stream":"items","data":{"type":"ITEM","id":"TCPBE22OQU5JOMKV2MNBVN35","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Understand again","description":"Popular book too effect old step. Gun reach test reveal money practice.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","variations":[{"type":"ITEM_VARIATION","id":"QT3XGCETBP6PBQEXKRJLTHVK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TCPBE22OQU5JOMKV2MNBVN35","name":"","sku":"798","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"4CJMIAN4LVNNLI6MNYRHKOYY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Service person","description":"Mind something stay above. Imagine allow capital image another participant.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"HST5JKSMNBMTIS7SWZ7HFV6G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4CJMIAN4LVNNLI6MNYRHKOYY","name":"Like","sku":"651","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BSUDEFYEFQTJB2F3RFZ6LQH3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4CJMIAN4LVNNLI6MNYRHKOYY","name":"Such","sku":"651","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"NAJYA2ALW3TRJJYFEBFVC25Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Affect here","description":"Man call attack next population. Interesting nature usually miss pick.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"YXJ7ITYGZHUZQAD43PGEOI3N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NAJYA2ALW3TRJJYFEBFVC25Q","name":"","sku":"700","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"OUVL3VG4JTLS227RDAQMQ7QP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Energy lawyer","description":"Light task Mr much. Than involve however total candidate. Box model quickly.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"MWR6H5556UZG2NIZBCU7JKCR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OUVL3VG4JTLS227RDAQMQ7QP","name":"","sku":"940","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"TH7EE2IH7M6ZT5ZC5ZPKUMSL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Final throw","description":"Town bill own history heart offer. Sister notice enough.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"H4YSVCJNF2YE2JOY72JUSGGQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TH7EE2IH7M6ZT5ZC5ZPKUMSL","name":"","sku":"957","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"GF53QCDNMWUG6SSOXLFSM7GZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Walk federal","description":"Congress politics where expect. Place number ok outside this floor language.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"4H3GL5R2NBEUOEQEB23NHHJN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GF53QCDNMWUG6SSOXLFSM7GZ","name":"","sku":"972","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"EYZKKXP5OC77FFFY4PGJSTMH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Current interesting","description":"Street customer result issue benefit. Listen tax set public the result.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"RV7XSPA26IBEHEZTSS2ZFLZN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EYZKKXP5OC77FFFY4PGJSTMH","name":"","sku":"989","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"PSF73KKLBOUACM3JIEIINEM5","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Able bit","description":"Art end manage laugh safe. New party road sort beat important.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"L27ZCD3LCNNU5BLNRMLCD6GS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PSF73KKLBOUACM3JIEIINEM5","name":"Marriage","sku":"166","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TLL2QDA3U5P7AAA2A4SGK52S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PSF73KKLBOUACM3JIEIINEM5","name":"Analysis","sku":"166","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":9900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"YFABMXRLJ3DVHSP643JCHUJQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"People past","description":"Election trouble whatever effort husband.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"IIMPYYT6HR3K5NQYQT5APUOO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YFABMXRLJ3DVHSP643JCHUJQ","name":"","sku":"214","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115744} +{"stream":"items","data":{"type":"ITEM","id":"OELS6U6T7UDI7ZRVYIRUMA6D","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"West easy","description":"Bank ok she foreign board table her. Difficult call share task news.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"AETPFZDOR36W4JH76TAK6GR2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OELS6U6T7UDI7ZRVYIRUMA6D","name":"","sku":"470","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"WQ5QZD7VWAN7J3WVIPNIKNFF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Inside ago","description":"First artist cost moment general. Level man wide ground hear.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"62KBIEDIJU4DPL4UAKS3VQTZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WQ5QZD7VWAN7J3WVIPNIKNFF","name":"","sku":"472","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"KJ4FVQ33VYIE6QV45ZYQHVGY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mind even","description":"North itself even law red list. House easy yet many ask bank after lay.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"OTM7ULXSBF7RVTM2AYIPBMB3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KJ4FVQ33VYIE6QV45ZYQHVGY","name":"Open","sku":"611","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"26TXK4APQGWZHWJIOFCMMLWS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KJ4FVQ33VYIE6QV45ZYQHVGY","name":"From","sku":"611","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":23000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"HRDMAZJSLILKCOHJNXVBPRHL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Property like","description":"No hit window. Let model vote sort late. Nature size carry before skill really.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"DJA4XSEQFIQH6D6OZXUUAICQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HRDMAZJSLILKCOHJNXVBPRHL","name":"","sku":"1084","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"NUUABAHQMHSGBFQICGQ2GKQO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Two development","description":"Property yard play common. Piece unit democratic financial law take too.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"ZKJJFECXCE4QJ3VAU5LNCZY5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NUUABAHQMHSGBFQICGQ2GKQO","name":"","sku":"234","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"2G36FPST5A5SQTFGFPHUR6WQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Opportunity half","description":"Face current season training successful.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"AT7M4QAVVSM3UZHN53ZORWMP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2G36FPST5A5SQTFGFPHUR6WQ","name":"","sku":"280","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"XSMPNTIIQCVOV6IMRFN4RZDQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Middle education","description":"Sit until street someone test. Tv participant surface staff music.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"IACMZUM3C7E22HLBQUWTPPHR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XSMPNTIIQCVOV6IMRFN4RZDQ","name":"Radio","sku":"326","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JHQ5VGZRAZRF2YDJUZSRIVCY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XSMPNTIIQCVOV6IMRFN4RZDQ","name":"Hard","sku":"326","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":27300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"763EXQU644UCIZNJLTQHUCA4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Far production","description":"Program significant speak many. Determine could oil nearly.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"ISIXHHBVAVE3EQYIAPZDFV24","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"763EXQU644UCIZNJLTQHUCA4","name":"","sku":"738","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"BKECE4UNWR5IIUC7B6IA6VJS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Turn sense","description":"Sound sound pull crime Mr. Material fall relate other.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"35TQNH56YWG72WIHGMFE2A32","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BKECE4UNWR5IIUC7B6IA6VJS","name":"","sku":"907","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"KDZLOVJ7GDZII2FAICR3FVQH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Over source","description":"Guy finish career memory herself surface.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"BRO72RZ5S4GK7W62MLT3IM5A","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KDZLOVJ7GDZII2FAICR3FVQH","name":"","sku":"134","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115745} +{"stream":"items","data":{"type":"ITEM","id":"SDGWPL4QAU7OCOZOFND2FTD2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fear floor","description":"Miss coach local race three improve.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"HEBJ2LG6QVNJRQHSISB5JEHE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SDGWPL4QAU7OCOZOFND2FTD2","name":"","sku":"663","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"AVQ6UOP27XSLROWD247WS4UG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Age leg","description":"Draw behavior prove. Source cause southern none Republican almost total.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","variations":[{"type":"ITEM_VARIATION","id":"VP764T7HQWA4X6VPBTZHBXQG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AVQ6UOP27XSLROWD247WS4UG","name":"","sku":"797","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"FYTV4I4A3AKKZBYS3O572HDG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Far energy","description":"Identify here mean. Suggest base live beyond life.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"BDO6JXL57H37TIY6OH37LF32","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FYTV4I4A3AKKZBYS3O572HDG","name":"Employee","sku":"353","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":17500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SIB5STYBIBKQJ7V6LLHUJTRF","item_option_value_id":"V7Z7DFCYJQE6X4W6GZ6CJEII"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"M3JHMHXIKARL7HSJ72RRKQUF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FYTV4I4A3AKKZBYS3O572HDG","name":"Hear","sku":"353","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SIB5STYBIBKQJ7V6LLHUJTRF","item_option_value_id":"W6DTAAKOGNPDFB3BFWDZUYPC"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"SIB5STYBIBKQJ7V6LLHUJTRF"}]}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"BCFZBHRQYK56WVZVZ3UJ2BZF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Source federal","description":"Go true whom trial try table. Visit discuss particularly end game real.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"UPYIJ5IWKNHI5HXOH6ITPIJ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BCFZBHRQYK56WVZVZ3UJ2BZF","name":"","sku":"428","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"CNLEEI6KTXR73YO46V77SCW5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Probably turn","description":"Know product watch water draw power. Share key thousand writer.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","variations":[{"type":"ITEM_VARIATION","id":"AVAMKU242AZYYC4XDUXVZLIT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CNLEEI6KTXR73YO46V77SCW5","name":"","sku":"795","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"MHL6ZJ476U6LVCYM45NA7M2W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Series purpose","description":"Tree decide deal term believe good late two. Audience between home agree.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"DLOBY32VSWHBJVUPPL3PZLQ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MHL6ZJ476U6LVCYM45NA7M2W","name":"North","sku":"977","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":5800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"MJZBHZNBUOC7IK3BC3NRYGKM","item_option_value_id":"Z4EQFW6OXAJHHG5UYQ3I6USK"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NRML5BEZ5D2EKDVCV6TKF5HJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MHL6ZJ476U6LVCYM45NA7M2W","name":"Future","sku":"977","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"MJZBHZNBUOC7IK3BC3NRYGKM","item_option_value_id":"SQHH7SBXA3K4UAKIWELD7NBH"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"MJZBHZNBUOC7IK3BC3NRYGKM"}]}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"L2I3H6XP37G4IUHLFH7D5WXT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Left sense","description":"Rich gun woman. Have care maybe yard believe. Be he movement budget fund.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"HNWQ6DGV2FLPFYRNLYO7RYI5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L2I3H6XP37G4IUHLFH7D5WXT","name":"","sku":"1034","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"RN55VNK657P3ZI4UL2OI2LMZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Region improve","description":"Throw they various kind rich agreement or. Computer vote continue above.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"XDVJ5RTR7W2UZY2IJ44KQGOU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RN55VNK657P3ZI4UL2OI2LMZ","name":"","sku":"1000","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"FXZ4C44VDCODQ3WCGLOTFXQP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Media allow","description":"Piece too act time above everyone long check. Cup prove bad.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"O3LDU4F347TONIGB4GKHPAIZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FXZ4C44VDCODQ3WCGLOTFXQP","name":"","sku":"135","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115746} +{"stream":"items","data":{"type":"ITEM","id":"BTJIVDHJO7KVMNNLNZWUM2S6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Morning just","description":"Rather crime short give decision.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"V3PLTGCGW35LVHMFJSJJDT24","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BTJIVDHJO7KVMNNLNZWUM2S6","name":"","sku":"180","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"XDF6KVZPAQX2EUMAA56RARJI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Feeling decade","description":"Who process listen know need. Song deep entire will.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"IUBDSKZ52BMWOWF26EKETFHN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XDF6KVZPAQX2EUMAA56RARJI","name":"Other","sku":"191","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"46XMWYZ7NOKV4ZZYS75QJHEG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XDF6KVZPAQX2EUMAA56RARJI","name":"Knowledge","sku":"191","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":3000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"AJ26ZNOVFUAZCKKLYP63INK3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"See senior","description":"Maybe situation entire catch. Office represent table author.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"D23V6ZDXUHVY7DLLWOED4AF6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AJ26ZNOVFUAZCKKLYP63INK3","name":"Will","sku":"473","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":11600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"VMI5R3W5VMSZEF6LKIDG4GB6","item_option_value_id":"SASFR55PRTWNQ4OWG47VOOYI"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LHW2NGCYOP6Z3PGA5TJBTOZD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AJ26ZNOVFUAZCKKLYP63INK3","name":"Or","sku":"473","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"VMI5R3W5VMSZEF6LKIDG4GB6","item_option_value_id":"GV4FPVNR6OLOALJQR7Z4FPI6"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"VMI5R3W5VMSZEF6LKIDG4GB6"}]}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"6RMFWVDKNBNXQMW5MMQNT25J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fine board","description":"Moment either hear everyone into former give.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"EZNFWBFRHK4WOZWXHPFUV64S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6RMFWVDKNBNXQMW5MMQNT25J","name":"Risk","sku":"745","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":29300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"BV7R4OIFDBJWTBDEWQ7UQVLJ","item_option_value_id":"MAJMKJ5IWIKOASXFKJBX53QD"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YOKISHYVEDEHLAXYQJ3Y6S4F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6RMFWVDKNBNXQMW5MMQNT25J","name":"Just","sku":"745","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"BV7R4OIFDBJWTBDEWQ7UQVLJ","item_option_value_id":"5YF434MWYVXOV6VHKCN4DD7J"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"BV7R4OIFDBJWTBDEWQ7UQVLJ"}]}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"AVZTNH5LSXDLQUOBNN3HSKRF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lead five","description":"Book run example research door military story.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"KKOHCLA4QDYZWDB544JEVJFS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AVZTNH5LSXDLQUOBNN3HSKRF","name":"","sku":"844","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"3BVMZOTH4SDHEOTJ4335DEIH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Opportunity provide","description":"Off attorney cell western ten else forward.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"ZETQ7IJLMO2JYQ3YCQXSIVTK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3BVMZOTH4SDHEOTJ4335DEIH","name":"","sku":"924","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"B26DPJIGYQSYJFTAZOJTDANJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Cup often","description":"Red support front later condition else.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"ODIUKNR64ZGBSMKUQH5XIPTP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B26DPJIGYQSYJFTAZOJTDANJ","name":"Ago","sku":"1086","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"HQOJMR7AUUSQ2KRSHFCONXDK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B26DPJIGYQSYJFTAZOJTDANJ","name":"Talk","sku":"1086","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":25300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"3QTY2KTEVVX3LM6OAZCJRZPZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Eye improve","description":"Couple side she learn style.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"WF32HNY56PYHMPXJSXF6W444","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3QTY2KTEVVX3LM6OAZCJRZPZ","name":"","sku":"424","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"URY3SOGUX7RAUHQNKF47HGJZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Throughout factor","description":"But ground require many trial kitchen. Less hour plan street north off.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"5IDGTDCYY65ZBXXI2DNWFR6U","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"URY3SOGUX7RAUHQNKF47HGJZ","name":"","sku":"674","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115747} +{"stream":"items","data":{"type":"ITEM","id":"MLJHE7YPLI6TG27EZK4OF54N","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Accept dark","description":"Prevent stand prevent meet place than situation.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"EPKAI2FE5WUSIEFGAKXPF5FX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MLJHE7YPLI6TG27EZK4OF54N","name":"Management","sku":"785","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"6SK7Z3KDM6ZAPTN5LXIEWOM3","item_option_value_id":"SFED4QXSGXF3YAPDNZNXCBJQ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PSR2CO57XOAJLJRYTVGXQ3LU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MLJHE7YPLI6TG27EZK4OF54N","name":"Wonder","sku":"785","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"6SK7Z3KDM6ZAPTN5LXIEWOM3","item_option_value_id":"B7TVCSWI6UNX44Q2QOK4NIIJ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"6SK7Z3KDM6ZAPTN5LXIEWOM3"}]}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"6UORKSHYRQ3LW2G5KHHGZKKB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fight others","description":"Let one chance. Raise live close lose he need from.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"JHURW6HPQICJRUXE7IKYQRAX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6UORKSHYRQ3LW2G5KHHGZKKB","name":"","sku":"805","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"KWCUDY35W7VPP4Q5QKJPQO7T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Including us","description":"Involve few machine within trade him magazine. Budget within short sure.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"WXVAIN466J7SY7S65ECW6UPT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KWCUDY35W7VPP4Q5QKJPQO7T","name":"","sku":"909","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"RWJ4PIEEYQDVASDYY7LL6LKD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Least arrive","description":"Hope stuff system. Station see to number strong white begin.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"TEOB7E6LINAHY454YLTQ5AXU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RWJ4PIEEYQDVASDYY7LL6LKD","name":"Possible","sku":"916","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6MCV6HI33Y5EMM2ZKOTVPNU4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RWJ4PIEEYQDVASDYY7LL6LKD","name":"Possible","sku":"916","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"2ML42IHHU7HO3D253BZNY36L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hope specific","description":"Attorney civil ago probably. Direction significant anything serious chance.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"V2GRPO7SGAZCVO6IUKV5WZFP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ML42IHHU7HO3D253BZNY36L","name":"System","sku":"1009","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":6500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SRSNIFSIXXGQ2CCZVWGIIJW6","item_option_value_id":"U2MW3SEFHFTKXXY42I2U3XNT"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TOFHAXISG4XPIED22E42CIBL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ML42IHHU7HO3D253BZNY36L","name":"Gun","sku":"1009","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SRSNIFSIXXGQ2CCZVWGIIJW6","item_option_value_id":"UXFFQ3B4YTZHMVFOPFNO2GDB"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"SRSNIFSIXXGQ2CCZVWGIIJW6"}]}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"FRRJQUUHRYKTUKVGXX65AFRX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Front especially","description":"High computer star ever. Week space morning picture.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"4JJGQY5JQRYBDSZ4DPCSIULL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FRRJQUUHRYKTUKVGXX65AFRX","name":"","sku":"144","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"CXWXLJ572RFIG7656AH2NQ3W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Take letter","description":"Price by company bag former. Send rise science operation forget set pretty.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"D2OS6EKJ5Z6SUYIRUFGU4VCX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CXWXLJ572RFIG7656AH2NQ3W","name":"Every","sku":"296","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"U3AJ6GXRYN2BKULRYT5YBDQY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CXWXLJ572RFIG7656AH2NQ3W","name":"Allow","sku":"296","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"DC4646WF4OXS24DFSNUAVDN4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Can indeed","description":"Star chance power story local. Down town hit stay.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"Q4PPK65X24F4NMG4TN46DPMO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DC4646WF4OXS24DFSNUAVDN4","name":"","sku":"583","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"X4TOGO3FHMORUXUAFQIKQJPV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sort art","description":"Practice clearly family fire what me.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"WKCIGWPMVBIX5EDHFJHAZQUA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X4TOGO3FHMORUXUAFQIKQJPV","name":"","sku":"592","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115748} +{"stream":"items","data":{"type":"ITEM","id":"FZ3QZZGV7FK7ZVZPN47WV3QK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Weight country","description":"Enjoy receive little structure important.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"CB2BYWHKDBOUABKTM6TLRBCR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FZ3QZZGV7FK7ZVZPN47WV3QK","name":"","sku":"604","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115749} +{"stream":"items","data":{"type":"ITEM","id":"7V77DQPH46SNOXV7Z5MDC272","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Simple live","description":"Husband dog style in show ten.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"JKWIMV7WRXUA7FDSP2JC54RS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7V77DQPH46SNOXV7Z5MDC272","name":"Off","sku":"756","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6YV3ICXMDODSUD5Y426O4ITM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7V77DQPH46SNOXV7Z5MDC272","name":"Mrs","sku":"756","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115749} +{"stream":"items","data":{"type":"ITEM","id":"5XL4RZ73M3IH6UH6ETBBNPJ4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Operation knowledge","description":"Here investment growth thank set pretty she.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"UNOYROWAF2JFEMISBC3AMU33","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5XL4RZ73M3IH6UH6ETBBNPJ4","name":"Entire","sku":"817","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":25300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"Y22LTHUDUIV6TQ7JMA7JEFQV","item_option_value_id":"O7ASQ5LKOD7ON7UR4A64AFSB"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TZUAMS7BQZF5PMN7YKP7QMNP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5XL4RZ73M3IH6UH6ETBBNPJ4","name":"Debate","sku":"817","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"Y22LTHUDUIV6TQ7JMA7JEFQV","item_option_value_id":"CSJDHIL6IGPAXP3LYI3UQN4W"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"Y22LTHUDUIV6TQ7JMA7JEFQV"}]}},"emitted_at":1668290115749} +{"stream":"items","data":{"type":"ITEM","id":"OTD3V7ZHYGLYFJ5NMQFSGQEK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Less not","description":"Role president talk rule. Or although reveal. Who force serve get.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"2PNELWZSBQDZO6FWIHCYTPBO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OTD3V7ZHYGLYFJ5NMQFSGQEK","name":"Toward","sku":"185","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":2200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"LBIHJ2T2IQQIKRKQSGQHI5GL","item_option_value_id":"BUBL7NIIZ2ZX7RMATH76FA4L"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"3GDZXPJEM7HBNMEWAJV5VOKG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OTD3V7ZHYGLYFJ5NMQFSGQEK","name":"It","sku":"185","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"LBIHJ2T2IQQIKRKQSGQHI5GL","item_option_value_id":"VWXZF4ZXYXSONHFFJ3BTSGTF"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"LBIHJ2T2IQQIKRKQSGQHI5GL"}]}},"emitted_at":1668290115749} +{"stream":"items","data":{"type":"ITEM","id":"XY7OXCDWUHZBLHYUZU5KPMZ4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Free administration","description":"Choose site subject hand lead everything day.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"BZQXV3JLMLYODPY2OISGN3XY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XY7OXCDWUHZBLHYUZU5KPMZ4","name":"Knowledge","sku":"356","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"4KOHR5X7SOUJ5MV5DNMTYXXH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XY7OXCDWUHZBLHYUZU5KPMZ4","name":"Process","sku":"356","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115749} +{"stream":"items","data":{"type":"ITEM","id":"AX27F2RJWNCBL2G5OEUGLALV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Education majority","description":"Kitchen police material safe. Draw father oil upon site clear.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"MCTC3DTRW24LX2YQFRUDVYWI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AX27F2RJWNCBL2G5OEUGLALV","name":"","sku":"560","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115749} +{"stream":"items","data":{"type":"ITEM","id":"46UZ7VVQY7W6OCVDUGBVS5VF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"National think","description":"Difficult whole can write let fund either. Sense who seven time health.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"SP36FKBBR2VM645SPW6LNLJJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"46UZ7VVQY7W6OCVDUGBVS5VF","name":"","sku":"774","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115749} +{"stream":"items","data":{"type":"ITEM","id":"5EYBP7ZV2CP6OADE6TFZ7RQN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whom though","description":"Work study reason have. Now every chance amount.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"XIRWXOTOIRRRM35U3HMVWH4H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5EYBP7ZV2CP6OADE6TFZ7RQN","name":"","sku":"164","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115749} +{"stream":"items","data":{"type":"ITEM","id":"OIWNKCDNIGZ7UKTWWQLMZ57N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Defense star","description":"Answer hot kitchen just allow. Just officer form lawyer deep seven see.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"IJ5WD4EIP77CZRY7KDLJN4DM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OIWNKCDNIGZ7UKTWWQLMZ57N","name":"","sku":"920","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"AVPOYOMZDRLCV4SSZBCQYSW6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Decision although","description":"Stay clear art too none strategy. And reduce federal American.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"UMAMELUXTUWF72JV2YJPMO2S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AVPOYOMZDRLCV4SSZBCQYSW6","name":"","sku":"1085","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"ZMRCLB3ENENZGM7G22G7KAYB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Republican sort","description":"Cell safe young be save sing. Front leg difficult generation miss require.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"N6OTD4IPO7GPYOAKAWE5TPLB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZMRCLB3ENENZGM7G22G7KAYB","name":"Carry","sku":"316","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"CIZ776ZFV4TMDTTMU6SCMIHE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZMRCLB3ENENZGM7G22G7KAYB","name":"Election","sku":"316","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"G5RFJ73TZ64WJQ3PCPIOABRF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Baby professor","description":"Bad space generation model bill sport. Available market another blue.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"WZNMI5G3QF7NWPUX5IVNIVXY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G5RFJ73TZ64WJQ3PCPIOABRF","name":"","sku":"397","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"3NPIJNZUR6N2EAG3XYYCLCSC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Think thing","description":"Real animal beautiful sit. Reduce under travel practice color a create century.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"XQCSVWLA25T6ZP22YTAUHT6Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3NPIJNZUR6N2EAG3XYYCLCSC","name":"","sku":"647","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":30000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"6QDDYE4726MXGRGNAATL5UXX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tend difference","description":"Majority trade role inside. Give property time own.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"K5W2SUK5WE3P5FFUF6TVK6OQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6QDDYE4726MXGRGNAATL5UXX","name":"","sku":"490","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"SS42SWIK5L5PRG4WQVQAN5TP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Join agent","description":"Green each property word outside such admit. Never my create beyond.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"MNL6O5UFBKDXUZQRI5KO3PLJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SS42SWIK5L5PRG4WQVQAN5TP","name":"Sit","sku":"701","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"E4UBITULBVDC5LR2WS4EM76X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SS42SWIK5L5PRG4WQVQAN5TP","name":"Second","sku":"701","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"EKQFYT6HCHVCMYUSSZ432KCJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Skill both","description":"From live image need account. Much effort drug green project word or.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"ZT6ME2LDY6BOCDZZWP7E4EHE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EKQFYT6HCHVCMYUSSZ432KCJ","name":"Hot","sku":"713","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":7800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"H2EGYNHAI7XN3IRZZON5L4RL","item_option_value_id":"CSW4SWPCXTB6WKCQY3HTSZ7T"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"3MKQQ6JGEWKAFFWA3C2WYR3W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EKQFYT6HCHVCMYUSSZ432KCJ","name":"Someone","sku":"713","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"H2EGYNHAI7XN3IRZZON5L4RL","item_option_value_id":"Q4QEL7QVYYMSOUPM2HXM7QPT"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"H2EGYNHAI7XN3IRZZON5L4RL"}]}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"OIUNLFQU7WC7E4JO5JHP74WK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Green ahead","description":"Fact major cell sea life easy enjoy. Air produce behind.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"HUUSNA3RKZT7YFD4MAISHSNK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OIUNLFQU7WC7E4JO5JHP74WK","name":"","sku":"139","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115750} +{"stream":"items","data":{"type":"ITEM","id":"NQJXW3X76TPAZ5P2L2O7JOFF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Over others","description":"Develop build agree so usually deep her.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"BLLNJ72CCT32VV4HGJQLZEVR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NQJXW3X76TPAZ5P2L2O7JOFF","name":"","sku":"157","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115751} +{"stream":"items","data":{"type":"ITEM","id":"42APO7TRJDPT7JOGZSXP5T2T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Quality size","description":"Sea team compare still later style forget.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"BGAV5SITJXL77MWNJH6BMUMA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"42APO7TRJDPT7JOGZSXP5T2T","name":"","sku":"227","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115751} +{"stream":"items","data":{"type":"ITEM","id":"UUN4XMQZK3PHNJAOCX3OLPG3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Both apply","description":"Box baby eight agent bank up really pull. Center reduce bank thousand happy.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"FK3GQTQ2R3CXVQSUVOKSVRRX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UUN4XMQZK3PHNJAOCX3OLPG3","name":"","sku":"275","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115751} +{"stream":"items","data":{"type":"ITEM","id":"DALHUGKPDFSTKS6LBGCGSKKR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"She evidence","description":"Day too each know meet. Strong wall current blue against usually bring.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"GC3WLGOA7PCI3K7CG5LFSLU7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DALHUGKPDFSTKS6LBGCGSKKR","name":"","sku":"464","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115751} +{"stream":"items","data":{"type":"ITEM","id":"FOPYHKKW7EEHJMN6SLDI3CVV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Such responsibility","description":"Their story wall lawyer. Bring ever treatment choose first Republican.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"CYUBWQFWRH2IUS6PDEZNNPJI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FOPYHKKW7EEHJMN6SLDI3CVV","name":"Fast","sku":"1046","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IOCQJ63DK6D4M5OB2EWPH5AF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FOPYHKKW7EEHJMN6SLDI3CVV","name":"Social","sku":"1046","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115751} +{"stream":"items","data":{"type":"ITEM","id":"472Z5W7TRSH5OSLNFLJVMJOJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Perform herself","description":"Include yet both part. North recent race listen tell result treatment.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"TBHIFV7MNAUVMGMEA656T5YE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"472Z5W7TRSH5OSLNFLJVMJOJ","name":"","sku":"1002","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115751} +{"stream":"items","data":{"type":"ITEM","id":"CYEBB46KPI73XUY2YPNQVMJV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Several strategy","description":"Benefit appear long line player. Difference else every before increase apply.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"2BYXYAKULRFLIQF3JUKOTUGS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CYEBB46KPI73XUY2YPNQVMJV","name":"Speech","sku":"271","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ORAMDTKLC6COGZOFHSWLYXND","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CYEBB46KPI73XUY2YPNQVMJV","name":"Affect","sku":"271","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115751} +{"stream":"items","data":{"type":"ITEM","id":"ECE43L5HLNRR7EWCHPNW723G","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Action worker","description":"Glass able wait position. Mrs almost art serve hit cultural.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"YCQWVWHT74R4F5I7FYRBGJZ4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ECE43L5HLNRR7EWCHPNW723G","name":"Challenge","sku":"516","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FI6OR4C5SDJ7R25OYMTOQJGG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ECE43L5HLNRR7EWCHPNW723G","name":"Let","sku":"516","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115751} +{"stream":"items","data":{"type":"ITEM","id":"KGJRK5GRKYJKYJZX3D2KY7NR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Finally out","description":"International guess dinner benefit remain because several product.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"HA3YGALQMNLGG5BM6EHA4XSY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KGJRK5GRKYJKYJZX3D2KY7NR","name":"","sku":"867","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115752} +{"stream":"items","data":{"type":"ITEM","id":"Z4XR6KLJQWN5JCTHCFV7LUBR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mr newspaper","description":"Set middle throw likely. Probably team machine election sea.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"UBLKVGP4JIPMHOFUY7NGSP4F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z4XR6KLJQWN5JCTHCFV7LUBR","name":"","sku":"914","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115752} +{"stream":"items","data":{"type":"ITEM","id":"XYUT5WHXZYBWRKPG7QT4VZPF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Detail claim","description":"Throw marriage cold design stock include. Series stock range lot push news.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"UACHMCLM2TVC5V3YRYOQ5YSR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XYUT5WHXZYBWRKPG7QT4VZPF","name":"Unit","sku":"1011","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QHIKB5VKACUFKZLAQRQ75EEG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XYUT5WHXZYBWRKPG7QT4VZPF","name":"Happen","sku":"1011","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":13000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115752} +{"stream":"items","data":{"type":"ITEM","id":"RVSG6G2JMTMDSQJJDJHSJ7IS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Focus organization","description":"Eight bar leader firm lay him opportunity. Cut network join response.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"AWVMRXPD3GMUTAGO2XUYX5F3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RVSG6G2JMTMDSQJJDJHSJ7IS","name":"","sku":"635","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115752} +{"stream":"items","data":{"type":"ITEM","id":"E5MPORO72LSPJAHQFRNE5RP7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Evening reflect","description":"Arm huge give to continue. Small hour economic guy.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"53OFLZQX44JIUSY4KGNJUMLT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E5MPORO72LSPJAHQFRNE5RP7","name":"","sku":"639","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115752} +{"stream":"items","data":{"type":"ITEM","id":"PVIGD2K24VUFSMTMSRYG5OGV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rock learn","description":"Grow spring lose whatever agency each.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"KZH7V55K5732ZIQQEUONO4NC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PVIGD2K24VUFSMTMSRYG5OGV","name":"Tell","sku":"786","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"D2EQ3YYU3P5ZZMGOF55WSVKK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PVIGD2K24VUFSMTMSRYG5OGV","name":"Energy","sku":"786","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":19900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115752} +{"stream":"items","data":{"type":"ITEM","id":"G75BV65RTSSAGZLRKFKVPAE5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hotel training","description":"Event minute mother teacher. Realize land we early focus write simple.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"XI6L44XAFC77MNWK7TZB7HE3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G75BV65RTSSAGZLRKFKVPAE5","name":"","sku":"1062","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115752} +{"stream":"items","data":{"type":"ITEM","id":"XGPAHRF7GE2PPNR3ODX2LNL7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Official direction","description":"Art director little guy. Look how against article fact raise poor campaign.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"B4FJZFNGPOIQTNO6XUVLOIYN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XGPAHRF7GE2PPNR3ODX2LNL7","name":"Baby","sku":"131","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"72VPVZMZDY5AGWZO7VOXC4FC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XGPAHRF7GE2PPNR3ODX2LNL7","name":"Man","sku":"131","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":10400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115752} +{"stream":"items","data":{"type":"ITEM","id":"IVFVANSICNSUMH6ZGW2JTZQF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fine enjoy","description":"Probably range along positive race high.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"WJ7GDVOQD3STGGQALNZQ44RB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IVFVANSICNSUMH6ZGW2JTZQF","name":"Art","sku":"537","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":17800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"NTLPLNLSTAQG3RFRX7ZZ5IZQ","item_option_value_id":"7I2D4VZTXSPJHOSGUTNL5S5P"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VLZSGMPTTS6RHY3YIIH3B7NB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IVFVANSICNSUMH6ZGW2JTZQF","name":"Heart","sku":"537","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"NTLPLNLSTAQG3RFRX7ZZ5IZQ","item_option_value_id":"VRF7I6JATNQO5P5DDMOMDKD6"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"NTLPLNLSTAQG3RFRX7ZZ5IZQ"}]}},"emitted_at":1668290115753} +{"stream":"items","data":{"type":"ITEM","id":"NXYVVRJLMFPSSUOZFQMIA7MY","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Across activity","description":"Manage spend rule speak. Life manage west difference.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"76O6CJHFXRWIWYXEZLNCWXQ7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NXYVVRJLMFPSSUOZFQMIA7MY","name":"You","sku":"846","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"N7WKYB2RZ2PS43V7E2LFOGIC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NXYVVRJLMFPSSUOZFQMIA7MY","name":"Animal","sku":"846","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115753} +{"stream":"items","data":{"type":"ITEM","id":"N3L6TXHR72555BUVDJ2MHO7W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Avoid partner","description":"Pay who suggest approach. For perform whole.","category_id":"3F6KPRH2SRONZN5ACBGW6DDS","variations":[{"type":"ITEM_VARIATION","id":"U5LOIIXFSMBX3CAINW2USLF2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N3L6TXHR72555BUVDJ2MHO7W","name":"","sku":"1102","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115753} +{"stream":"items","data":{"type":"ITEM","id":"TNIQJA2ARNK57R2XTAWMNV3M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Discuss tv","description":"Nature such must raise someone. Phone safe hard rule situation.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"BTZOPQ5MBGKD6F6AAXXDGWHD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TNIQJA2ARNK57R2XTAWMNV3M","name":"Stage","sku":"261","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6CKYTZW4RL5COWOJ6LU3IY4O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TNIQJA2ARNK57R2XTAWMNV3M","name":"Political","sku":"261","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":18000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115753} +{"stream":"items","data":{"type":"ITEM","id":"MT7CKET6TXC7BJJ2ZC2MORSR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Budget open","description":"Somebody always everything performance second simple trip garden.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"ECSFYCIXONYKOGQ7LJULR4CU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MT7CKET6TXC7BJJ2ZC2MORSR","name":"","sku":"308","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115753} +{"stream":"items","data":{"type":"ITEM","id":"4MWAVFT4NBPKKSHO4AAS4VH7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Follow western","description":"Box almost she share. Section level their left yard.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"VOUJOUZQ3A2ZAMOZHDCYITFS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4MWAVFT4NBPKKSHO4AAS4VH7","name":"See","sku":"421","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"R2US6O36XKTNUNPDNWK6CUKK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4MWAVFT4NBPKKSHO4AAS4VH7","name":"Just","sku":"421","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115753} +{"stream":"items","data":{"type":"ITEM","id":"JO7GCAS2H5IDG24DYG4VHRRR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Opportunity similar","description":"Seem least type skill hit throughout. Bed because save thought.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"KIMSGEAYKH2O7G4MM7DUR4GL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JO7GCAS2H5IDG24DYG4VHRRR","name":"","sku":"543","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115753} +{"stream":"items","data":{"type":"ITEM","id":"PMPU5UGI3AD3YMARRZXDAI7C","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Item agreement","description":"Question worry example situation recent bill. Road policy watch guy large.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"CI6KEUIAIVH5MPYWNHL5PHSD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PMPU5UGI3AD3YMARRZXDAI7C","name":"","sku":"600","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115753} +{"stream":"items","data":{"type":"ITEM","id":"MR5W3OBJDHUWNNS7VXOPD3DA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Third time","description":"Serve myself decision current year fight admit.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"TDJ62N74Q2WM53YATY2SD5CL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MR5W3OBJDHUWNNS7VXOPD3DA","name":"Night","sku":"311","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7OLVZCKTAEE6342GFGVJRPQA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MR5W3OBJDHUWNNS7VXOPD3DA","name":"Office","sku":"311","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":28100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115754} +{"stream":"items","data":{"type":"ITEM","id":"GUC3O5PGI6YLESLVKH34O5BU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Beautiful ground","description":"All follow scene development language type personal. Sing song any effort.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"4D4KTWVEQNPMMUSZQ5XZMBMH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GUC3O5PGI6YLESLVKH34O5BU","name":"","sku":"874","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115754} +{"stream":"items","data":{"type":"ITEM","id":"IU2IZDULO6QV2F7GZYEPCWNR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"View the","description":"Program head fund west remember trip. Store share interview marriage.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"F2VNRBRSS7GL7UR2BNIEDPQU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IU2IZDULO6QV2F7GZYEPCWNR","name":"Term","sku":"137","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":2100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"FG55C6B7P2QCMBDAHLYVTBIM","item_option_value_id":"MGQQK4BYPLY3444T7D5S4OQV"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SSV7UR4QKGTP6JX54QSYNELE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IU2IZDULO6QV2F7GZYEPCWNR","name":"Sometimes","sku":"137","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"FG55C6B7P2QCMBDAHLYVTBIM","item_option_value_id":"O77CB7YRF2PFWXYZDKM6UFJA"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"FG55C6B7P2QCMBDAHLYVTBIM"}]}},"emitted_at":1668290115754} +{"stream":"items","data":{"type":"ITEM","id":"ZCHRUR43YRSCE7CO2CCLCX2Z","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Admit forget","description":"Easy whose security set community administration color.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"ACOJRY4SFBRKRFGDOYC46OW3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZCHRUR43YRSCE7CO2CCLCX2Z","name":"Require","sku":"151","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KZLPMPBHY7JJTMW7ITJ5BC2Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZCHRUR43YRSCE7CO2CCLCX2Z","name":"They","sku":"151","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115754} +{"stream":"items","data":{"type":"ITEM","id":"SIMBI35EYVGDRYE4XJ3CZFHR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Just place","description":"Kid message president similar because.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"U7B2JCVFBK76NIZR52Z5IISZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SIMBI35EYVGDRYE4XJ3CZFHR","name":"","sku":"162","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115754} +{"stream":"items","data":{"type":"ITEM","id":"VW5JVIZIABLNQLKXUSISJRTV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Despite room","description":"Win be leader bring financial.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"I4DBONGXYZT5VJKPY4YOMRQ5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VW5JVIZIABLNQLKXUSISJRTV","name":"","sku":"350","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115754} +{"stream":"items","data":{"type":"ITEM","id":"DTOUDSEB77FPIQJL7IXMCR32","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Off great","description":"Safe listen difficult knowledge box deep.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"MVTVVJUTPDVT3J27Z4MCV2QY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DTOUDSEB77FPIQJL7IXMCR32","name":"","sku":"373","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115754} +{"stream":"items","data":{"type":"ITEM","id":"Z2OKKHQDBIOBYFSKLCF2MY46","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Push life","description":"Piece several gas mind glass those use.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"ZDXFFULVOVOAHJTV6XBNL4F7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z2OKKHQDBIOBYFSKLCF2MY46","name":"","sku":"170","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115755} +{"stream":"items","data":{"type":"ITEM","id":"5T463HTSY5XOGB7HAHHZ2M4R","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whose process","description":"Behind add sit yet between event. Each author data likely tough job stay play.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"6ZGF6KXXL57XB4LZ6PGHHIKJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5T463HTSY5XOGB7HAHHZ2M4R","name":"","sku":"363","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115755} +{"stream":"items","data":{"type":"ITEM","id":"OITZIEGXQ7TQLZIICYSQBBXC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Day data","description":"Computer career class field above process.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"27K7RWU4ERBSBIX7S3VYFJKH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OITZIEGXQ7TQLZIICYSQBBXC","name":"Season","sku":"457","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"6CDO7HDENVWJEGP325PL5E5R","item_option_value_id":"KNMPQQC5YSFFFIMXVNTSDMVP"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"V7MGYRMZDJ4LBZGFEDKY2UWY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OITZIEGXQ7TQLZIICYSQBBXC","name":"She","sku":"457","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"6CDO7HDENVWJEGP325PL5E5R","item_option_value_id":"CZJKD2YIAICZUI263F4EXXVI"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"6CDO7HDENVWJEGP325PL5E5R"}]}},"emitted_at":1668290115755} +{"stream":"items","data":{"type":"ITEM","id":"5A3XAWURIDTB4URNBQX7F3RX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Though window","description":"Wrong follow technology news. Eight middle home several much whether author.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"CA7IA4QBMUURGTOJIXY3NUKE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5A3XAWURIDTB4URNBQX7F3RX","name":"","sku":"504","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115755} +{"stream":"items","data":{"type":"ITEM","id":"XXPMSGTFJBAEHMOESX3VYYTA","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Area either","description":"Suffer officer show old probably character.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"KCO7DXPSOEKCYNOVULUN2GWJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XXPMSGTFJBAEHMOESX3VYYTA","name":"","sku":"587","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115755} +{"stream":"items","data":{"type":"ITEM","id":"4NZZICZDNM4JXLOVUQ35DQUT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Easy manager","description":"Song style item help knowledge second different.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"BMGQMA5VS4MQSYOSOTZXUAE5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4NZZICZDNM4JXLOVUQ35DQUT","name":"","sku":"1059","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115755} +{"stream":"items","data":{"type":"ITEM","id":"O5Q73CXH54FNYA4H5T4TZY4N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Different throw","description":"Article crime push direction. Brother contain knowledge country near.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"JJBHJYUYR6FJVWQOCMVHFGIO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O5Q73CXH54FNYA4H5T4TZY4N","name":"","sku":"1088","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115755} +{"stream":"items","data":{"type":"ITEM","id":"TJUVWBGHKM52OF6VHRNSV5NG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mission plan","description":"Friend side ever modern who keep. Today theory place attorney.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"X7ES7AVFXXYTBUCQQB3ABDNA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TJUVWBGHKM52OF6VHRNSV5NG","name":"Car","sku":"289","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":13500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZXBUWCA4XABUVZ62CYSM4GBR","item_option_value_id":"AS4AJ7JRY3SJPAHHDG5NDGIV"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"UZ63XRKMHNGTCOWGDG4WFNJF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TJUVWBGHKM52OF6VHRNSV5NG","name":"Culture","sku":"289","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZXBUWCA4XABUVZ62CYSM4GBR","item_option_value_id":"WV44TD5Z7I3BD3C5WLIQXOTQ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"ZXBUWCA4XABUVZ62CYSM4GBR"}]}},"emitted_at":1668290115755} +{"stream":"items","data":{"type":"ITEM","id":"KQRPBXNWHHK3LNO32U6YE2AW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mrs black","description":"Body than responsibility collection. Clear school politics mention.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"NUGKGDS5SZVLRFBXKVUUDQT6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KQRPBXNWHHK3LNO32U6YE2AW","name":"","sku":"387","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"5FJQMUN3V5OUI4HZIUSXGEHX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Represent president","description":"Face herself theory financial including. Worker three social water now hit.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"RWJZCV5DUJIPZEL77DCSNWPX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5FJQMUN3V5OUI4HZIUSXGEHX","name":"","sku":"572","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"6HCLGJ2MADOELIHT7VOIEISI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Understand age","description":"Economic speech bring because not.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"4HS6EWN7SJ2T4JSZEASIHXZK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6HCLGJ2MADOELIHT7VOIEISI","name":"","sku":"870","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"YZOEBEODKHHNYMR5AYECMA23","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Certain have","description":"Matter rest prepare manage can. Natural brother visit energy meet bill.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"ZEQ52JUTIHNNJF7L4ERFI7IM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YZOEBEODKHHNYMR5AYECMA23","name":"","sku":"127","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"O557EOSHRHTQUXLIJAC7TDI3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Public water","description":"Say change become read. Home magazine six toward.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"TA5NU6WHSDFWZ4OKEBUDVPQE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O557EOSHRHTQUXLIJAC7TDI3","name":"","sku":"440","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"RHMWOT4UCRQ5DY5TXB6KCTCU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Down work","description":"Education way amount turn generation. Ok common like may six.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"ZA27YDHSHG3PAG5SCSICWUBA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RHMWOT4UCRQ5DY5TXB6KCTCU","name":"Person","sku":"686","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DB6HTTWSZENRBZARREYNTID4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RHMWOT4UCRQ5DY5TXB6KCTCU","name":"Field","sku":"686","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":1700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"7OFKA2LYEXLQDIPO4K6YIG4T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"His site","description":"Still clear she office movement relate.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"5O6QIHY4DGVUQZ7DO7FT4TWP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7OFKA2LYEXLQDIPO4K6YIG4T","name":"","sku":"727","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"6NJ757OWXRP3W7LTVKCCHDEU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"See first","description":"Land be end very painting debate. Authority reflect commercial short attorney.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"TGSKCHSCG2QYQFNFV3RXRHZ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6NJ757OWXRP3W7LTVKCCHDEU","name":"","sku":"835","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"YTZMPIEY4ZIN7UB5GNDEH4BC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tax design","description":"Before collection either. Teacher yard president.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"7VCGJBXJM4CB4EGMM7STIPME","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YTZMPIEY4ZIN7UB5GNDEH4BC","name":"Cultural","sku":"665","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":15100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OTEWQO7Y2BZ4M2XZDFNFFHO3","item_option_value_id":"Y6ABCTZNBBRIW3YF23FSC3HY"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VHCXBYDGNXPSJ6EAXGAUYCVX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YTZMPIEY4ZIN7UB5GNDEH4BC","name":"Fast","sku":"665","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OTEWQO7Y2BZ4M2XZDFNFFHO3","item_option_value_id":"GK3WFS5T7IXJYP574UJHJFF2"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"OTEWQO7Y2BZ4M2XZDFNFFHO3"}]}},"emitted_at":1668290115756} +{"stream":"items","data":{"type":"ITEM","id":"SBBMRZGWLJASHWPFGWR6I5UJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fish total","description":"Friend sing modern. Must manager skin child leave.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"5KJGYL3YV7L3IYUZPNZ3RFS3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SBBMRZGWLJASHWPFGWR6I5UJ","name":"Right","sku":"671","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"AWZ7WSA5S4PE7AVNMYZDMMZG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SBBMRZGWLJASHWPFGWR6I5UJ","name":"Without","sku":"671","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":12800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115757} +{"stream":"items","data":{"type":"ITEM","id":"CWLYILAU22RM2OYDZGENIBJH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Political over","description":"Cell last student current. Training someone station name window whole military.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"FLXPQ2NDNFPTAKVLV7PJAT6Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CWLYILAU22RM2OYDZGENIBJH","name":"","sku":"859","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115757} +{"stream":"items","data":{"type":"ITEM","id":"UOT5F5STFLADMNDUFN4XS6ON","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Affect current","description":"Available difference black win finally system.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"A3WFJ7QC4DR2MIFJXTFRUSGT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UOT5F5STFLADMNDUFN4XS6ON","name":"","sku":"1090","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115757} +{"stream":"items","data":{"type":"ITEM","id":"ZNXOLHQAKM4PBY6AUUZACKZA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Teacher i","description":"Citizen our grow detail country real opportunity.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"G6BRIXBU6AKONFPFGQJ2GWJG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZNXOLHQAKM4PBY6AUUZACKZA","name":"No","sku":"301","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZVXH5SZNYGIWPT6ZFAB66PQ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZNXOLHQAKM4PBY6AUUZACKZA","name":"Doctor","sku":"301","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115757} +{"stream":"items","data":{"type":"ITEM","id":"L3GRD2LHJGWUJTUQ27JUTO22","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Stuff away","description":"Show whom person art. Sure old detail wait result language shake.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"NHLYXFPCBQXIKJVMPYTBBTRI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L3GRD2LHJGWUJTUQ27JUTO22","name":"","sku":"364","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115757} +{"stream":"items","data":{"type":"ITEM","id":"ZVQSWLGJPJIJQL6FT42P2ETJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Join eight","description":"Boy worker church simply. Wish story reveal save can.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"EH64WARTO5TDAMOVGE3Z4S43","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZVQSWLGJPJIJQL6FT42P2ETJ","name":"","sku":"624","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115757} +{"stream":"items","data":{"type":"ITEM","id":"X3OTYX2X3CLYQO7WFZMPQFX2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Move see","description":"Protect maybe than. Finally skill economy later.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"SB2BDL2FSS52NRS7BW4SZ2ZD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X3OTYX2X3CLYQO7WFZMPQFX2","name":"","sku":"760","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115757} +{"stream":"items","data":{"type":"ITEM","id":"H3GCZUHLJBFCQ7NDDLJWY6AM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Maybe quickly","description":"Two enter maybe break dinner drive. Western true almost.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"TLJ4HU2QBDPRBM5ID3SFWRQ5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H3GCZUHLJBFCQ7NDDLJWY6AM","name":"The","sku":"921","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"EKICHS6XETLWYWCKFA7BHP4I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H3GCZUHLJBFCQ7NDDLJWY6AM","name":"History","sku":"921","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":23700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115757} +{"stream":"items","data":{"type":"ITEM","id":"TFI7GRBS4XKTSR7XWDEYH62X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Nor owner","description":"Food create speech respond peace.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"3JESGGR356OE34UIWBAVOZLE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TFI7GRBS4XKTSR7XWDEYH62X","name":"Above","sku":"985","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":1100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RXV6JUS66EVMFMTJQO7BAYKP","item_option_value_id":"OZWJXCKLJYSB3ASTUFGZYTRT"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LTJKLC74NBK6QELWAKOAOOA7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TFI7GRBS4XKTSR7XWDEYH62X","name":"South","sku":"985","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RXV6JUS66EVMFMTJQO7BAYKP","item_option_value_id":"ORHDOPEWF3XAPXYVJ2TNYN4A"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"RXV6JUS66EVMFMTJQO7BAYKP"}]}},"emitted_at":1668290115758} +{"stream":"items","data":{"type":"ITEM","id":"2ACR7BIY7VIX7X7D4VEJEPQR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Energy central","description":"Right subject enough after. Have responsibility to million.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"HLJM7OEKTEYNU7DDZRMJRLLT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ACR7BIY7VIX7X7D4VEJEPQR","name":"Marriage","sku":"746","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WYF746TILL5DQNRIBGNRMQUJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ACR7BIY7VIX7X7D4VEJEPQR","name":"Skill","sku":"746","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115758} +{"stream":"items","data":{"type":"ITEM","id":"P247ACAZKJHF6AIALH46D4TI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Town subject","description":"Blue discussion result message represent stay character difference.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"CB3MC4W3SOYLKIHMH4QCCUPW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P247ACAZKJHF6AIALH46D4TI","name":"","sku":"838","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115758} +{"stream":"items","data":{"type":"ITEM","id":"2OQAVYSQ2IVZ26NQN7FFY4IR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Pm human","description":"Finish I information environmental face city.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"TSC5C6F4M7NX6MHLAXLIBPYJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2OQAVYSQ2IVZ26NQN7FFY4IR","name":"","sku":"1042","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115758} +{"stream":"items","data":{"type":"ITEM","id":"NMJBU7OCUQXC4YZVA2FZISGD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Goal point","description":"Almost hotel collection front structure affect.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"PBIQWXNDEIFI3NC6MBVRW44B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NMJBU7OCUQXC4YZVA2FZISGD","name":"","sku":"318","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115758} +{"stream":"items","data":{"type":"ITEM","id":"IWA2MPDPBAQ23AZTWU5WP23F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Make site","description":"Career save new clearly. Push there late upon clearly bit.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"WBPNNPUHBGT5NNDQ7PLYKNKY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IWA2MPDPBAQ23AZTWU5WP23F","name":"","sku":"615","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115758} +{"stream":"items","data":{"type":"ITEM","id":"UP3QU6JTVN7Z7RDWDD6UJVXF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Range along","description":"Anything rock position carry over social really majority.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"P3MXSZNTFCIJHAF7XGQ3NU2V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UP3QU6JTVN7Z7RDWDD6UJVXF","name":"Black","sku":"901","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RPYNKDCYTOWUGFRQF6FZT2NY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UP3QU6JTVN7Z7RDWDD6UJVXF","name":"Win","sku":"901","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":20200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115758} +{"stream":"items","data":{"type":"ITEM","id":"FASUDEYYEPGENHEX6D2ZUKPX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Despite serve","description":"Article free today doctor Republican player value.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"QGDVGY46TJTIYRBP7DZLKBAL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FASUDEYYEPGENHEX6D2ZUKPX","name":"","sku":"220","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115758} +{"stream":"items","data":{"type":"ITEM","id":"2V3ZBXB4GDWEEKNMXWHWE4CP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Head direction","description":"General rise evidence interview. Meet artist large test these force finish.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"CURKVIZVCKP4PEXGMP47ZDII","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2V3ZBXB4GDWEEKNMXWHWE4CP","name":"","sku":"295","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"YV4RT5A2O7VKXO36JCIRJQAG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Walk identify","description":"Standard huge could table. Avoid sort leave wind author boy.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"N6W6JZ4OETEGFW2JBGYM5LW6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YV4RT5A2O7VKXO36JCIRJQAG","name":"","sku":"330","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"LP57SEPRBGXMGCJD3I23RVAI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Seem side","description":"Along writer husband box.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"7RBSXH5ESTK37ACPQBCPNPBT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LP57SEPRBGXMGCJD3I23RVAI","name":"","sku":"459","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"B5PF7ORMHXBWKR7URCPTAKDS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Well role","description":"Collection run leave create near property worry station.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"XCFRN3T7ZSLVCNNIP7462H5F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B5PF7ORMHXBWKR7URCPTAKDS","name":"","sku":"967","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"XPQ2QAR5CBOELUQDAS5Y4OX2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Call bar","description":"Election kind number perhaps effect. Stuff pretty body thousand town buy.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"XD7H6ZJ2L5JJY36A3SENAFZZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XPQ2QAR5CBOELUQDAS5Y4OX2","name":"","sku":"1082","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"EMO4POXMXEYISSRYGAM5QPEI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Arrive thing","description":"Even knowledge fine edge reveal author ask. Quickly would cell.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","variations":[{"type":"ITEM_VARIATION","id":"G3YHRBMTVCPH2OJKZFS6TDMV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EMO4POXMXEYISSRYGAM5QPEI","name":"","sku":"518","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"IQI7ZKWGSIQP6PAWMXJCPMYZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Southern night","description":"Six treat the him fast painting.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"YQSFYYZLU76DZG3WZGW2MI6Z","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IQI7ZKWGSIQP6PAWMXJCPMYZ","name":"","sku":"623","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"MR4SM2FAOZIKVVABVFXFLATY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Student participant","description":"Personal begin debate cell. Within decade customer television image.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"OB26BC44CWW4JMTNAR2YTNX7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MR4SM2FAOZIKVVABVFXFLATY","name":"Wish","sku":"625","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":28000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"KJ4IBV7GFB6TKR5D2TBSAY3O","item_option_value_id":"TN2JPVTAPNLLUZ5RJ4IRYTDL"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"4ARNV3QRPDY2A3OVWGFO2GU6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MR4SM2FAOZIKVVABVFXFLATY","name":"Decide","sku":"625","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"KJ4IBV7GFB6TKR5D2TBSAY3O","item_option_value_id":"2A5KROTJDZHXGBKL4ECOVIIK"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"KJ4IBV7GFB6TKR5D2TBSAY3O"}]}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"ZESUL4WGETVNSMVO5NOEJSOJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rock account","description":"Half dog quite race. Security determine past Democrat too sure.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"G55MNPYGOS7GSAH4OYJE2GNQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZESUL4WGETVNSMVO5NOEJSOJ","name":"","sku":"644","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115759} +{"stream":"items","data":{"type":"ITEM","id":"5ZWFENYCQIFDQDPG2BW6SVA4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Expert everybody","description":"Apply voice low per provide kind. Visit once professional possible tend.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"EWRHLVCCX5GRL7SR4J6F54NS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5ZWFENYCQIFDQDPG2BW6SVA4","name":"Accept","sku":"993","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"HDPCAQLPJCT22P7VONEMQY5P","item_option_value_id":"WK53CHK36UBDGAARAXMPSZKT"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NERFFUQAIKYMEFYSQ2CUJKT7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5ZWFENYCQIFDQDPG2BW6SVA4","name":"Management","sku":"993","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"HDPCAQLPJCT22P7VONEMQY5P","item_option_value_id":"536DMWS3O4EEPPGVPBHLNDBL"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"HDPCAQLPJCT22P7VONEMQY5P"}]}},"emitted_at":1668290115760} +{"stream":"items","data":{"type":"ITEM","id":"7E64SGJODTSEHOXVJQLCJGUX","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Anything dark","description":"However oil race board step best. Late reason around difficult cover note hard.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"35D2KRSOSAFG57BDSVHSFUOY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7E64SGJODTSEHOXVJQLCJGUX","name":"","sku":"332","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115760} +{"stream":"items","data":{"type":"ITEM","id":"G22V57HBBRPYS5WCTGMFIFPH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Medical although","description":"Wrong school enjoy expert build simple. Recent guess catch week five.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"75G3V6GJCB6MOFZCBOFNATTW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G22V57HBBRPYS5WCTGMFIFPH","name":"Party","sku":"426","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PTZSLHE6RS6UJVGRLJO32G4Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G22V57HBBRPYS5WCTGMFIFPH","name":"Really","sku":"426","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115760} +{"stream":"items","data":{"type":"ITEM","id":"DUYWXLTVVEMXBEW4VAYBPGL2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Training stage","description":"Government see happy professional last certain buy. Guess similar half power.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"MECKTSIXF6RP5HBH7ZN6M7OG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DUYWXLTVVEMXBEW4VAYBPGL2","name":"","sku":"595","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115760} +{"stream":"items","data":{"type":"ITEM","id":"G3NYHBZGHDA55KED4A7OWWAI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ground partner","description":"Ability set run throughout continue time someone agree. Opportunity soon space.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"OESGRBPHW4MOHWUBL4PHQE7S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G3NYHBZGHDA55KED4A7OWWAI","name":"","sku":"675","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115760} +{"stream":"items","data":{"type":"ITEM","id":"LJFQUTNF6NRYHXXGSA4VESW2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Next prevent","description":"Lose various despite walk only program pretty. Tax skin begin weight pull mind.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"PQFTGYO5SKVHZTE6IIX4CBNX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LJFQUTNF6NRYHXXGSA4VESW2","name":"Fall","sku":"721","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"AHTAPQD2POCCMXIGUCAHBUQ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LJFQUTNF6NRYHXXGSA4VESW2","name":"Wish","sku":"721","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115760} +{"stream":"items","data":{"type":"ITEM","id":"S2ETJRHA47GY6ITGBQLTIN6A","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Prevent develop","description":"Tend institution successful join trade help number. Hand fall system.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"BQHNYLQFTWQAWLHEHK3TQ6IQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"S2ETJRHA47GY6ITGBQLTIN6A","name":"Image","sku":"801","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZYFAHTYSQC6XINTJDRR6IO7X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"S2ETJRHA47GY6ITGBQLTIN6A","name":"Rock","sku":"801","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115760} +{"stream":"items","data":{"type":"ITEM","id":"INA3UHOTBRU6SNMLIHQSNAGP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Next forget","description":"Remain seek green soldier. Product data that. Well year left dog discussion.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"H3R3GQX2J2S5L3TSRHGWEDHE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"INA3UHOTBRU6SNMLIHQSNAGP","name":"Music","sku":"891","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SKXCETTB3Z7HYX4UMOSN7KYM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"INA3UHOTBRU6SNMLIHQSNAGP","name":"Of","sku":"891","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":19900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115760} +{"stream":"items","data":{"type":"ITEM","id":"EFN7C5NPU4XBV6L4OMAUEHXX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Officer teach","description":"Finally single arrive process attention trip.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"UH7YD26JDCCZETCOUTUSGBFL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EFN7C5NPU4XBV6L4OMAUEHXX","name":"","sku":"1013","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115761} +{"stream":"items","data":{"type":"ITEM","id":"HFZKHQHPMH426AOECQU4QNDH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Information without","description":"Account late after Mrs employee father many.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"H5PW2OIAZ7NHAZKGYR34QUYC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HFZKHQHPMH426AOECQU4QNDH","name":"","sku":"744","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115761} +{"stream":"items","data":{"type":"ITEM","id":"J7WJWA6FRK5KQFRDCAB3X4KT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Present happy","description":"Recognize outside method everybody. Some individual rate Democrat.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"IV3VXN6UFMVEOX6LF3TMAWPT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"J7WJWA6FRK5KQFRDCAB3X4KT","name":"","sku":"784","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115761} +{"stream":"items","data":{"type":"ITEM","id":"K272JBUKKWZTMVWCSLJCVCC2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Someone wonder","description":"Reach natural study service. Into director whatever hard should.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"VYXX5NRTPGSYC7UI3H7MV4A4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"K272JBUKKWZTMVWCSLJCVCC2","name":"Degree","sku":"936","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"V4GTN6BH2BGTK6GXKOETGXBB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"K272JBUKKWZTMVWCSLJCVCC2","name":"Manage","sku":"936","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":23400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115761} +{"stream":"items","data":{"type":"ITEM","id":"D2DOO6KLLCBMEFTDUMXNFDQL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Stock remember","description":"Order citizen management so. Scientist particularly seek remember.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"XAIAEKBMB3NL56KIT7YGTEUK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"D2DOO6KLLCBMEFTDUMXNFDQL","name":"","sku":"133","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115761} +{"stream":"items","data":{"type":"ITEM","id":"OWEWGZYTUZMRUEYXDRCZ2MVT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Every my","description":"Affect nature movement identify chance pass grow. Region personal space avoid.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"CM27L3XDMZMRIVVV4VSDIRIT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OWEWGZYTUZMRUEYXDRCZ2MVT","name":"","sku":"150","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115761} +{"stream":"items","data":{"type":"ITEM","id":"XOEG4TDI3JOYFHAS47HQNRGB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Travel choose","description":"Generation community join. Although arrive impact room.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"LS6AESJTT74GDRZJ22SOTJUY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XOEG4TDI3JOYFHAS47HQNRGB","name":"","sku":"288","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115761} +{"stream":"items","data":{"type":"ITEM","id":"ZRZ3T24ZRHL4PJMJ4ZAIOLFZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Close recognize","description":"Green probably thing half training wear. Number throughout factor.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"DKYISSOS3WGO63SDG64WCSS6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZRZ3T24ZRHL4PJMJ4ZAIOLFZ","name":"","sku":"423","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115761} +{"stream":"items","data":{"type":"ITEM","id":"FFBOZOTILKK64PXJZVXKSVB7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tax nothing","description":"Tell spring property production. Gas risk very everyone first fine.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"HNBWTR47ZTLY3KHZRKINU57K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FFBOZOTILKK64PXJZVXKSVB7","name":"","sku":"812","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"ZALC6ZXS3IXKFOZONEO3AJOH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Institution stuff","description":"Everyone son large. Occur it process time military consider.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"AZFGUY3YWQ2CPZ2BDQWCSP75","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZALC6ZXS3IXKFOZONEO3AJOH","name":"","sku":"1058","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"HFMZBZWEVF2PDW7MT6GUHVXQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Reduce detail","description":"Every person because morning cell nation partner. Article alone happen.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"VAYN7YPXYGDP742FVGDK6LCB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HFMZBZWEVF2PDW7MT6GUHVXQ","name":"","sku":"328","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"OUGRYMWGXPWISFLRMPEOLMTU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Case training","description":"Each agree should vote behind majority. Project century teach traditional.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"TX5E6TTNDTG65KFNCANQSCHJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OUGRYMWGXPWISFLRMPEOLMTU","name":"","sku":"853","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"7E6476CJZMW6JL43JJMS7XMP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bag call","description":"Power society pretty. Recognize kind attack. Follow ago charge fall beat many.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"KLAUAL2K7OUHD7KTH45XIIJK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7E6476CJZMW6JL43JJMS7XMP","name":"Career","sku":"991","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SDDKW23XRIOD4AXK27SKRIBK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7E6476CJZMW6JL43JJMS7XMP","name":"Form","sku":"991","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"7WVTACACG4RSRYGRKNXBWZRW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"After toward","description":"That lawyer fund city something fish first. Fine phone law everything hand.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"YHXPJEVD26IKKIQ3W5LCJTN4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7WVTACACG4RSRYGRKNXBWZRW","name":"","sku":"997","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"LYJ72DRSXTCCDD33XEFUZBHZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Step process","description":"Support water building same main new.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"NHC3TZ2JBBNWXCIHW2AHOYKG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LYJ72DRSXTCCDD33XEFUZBHZ","name":"","sku":"327","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"5TCEN2XNZHS377QKY5HKNBK2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Public what","description":"Building about commercial next as hour. Worker think new our summer.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"F7BO3J7KV3NEIP2MPJC226WX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5TCEN2XNZHS377QKY5HKNBK2","name":"","sku":"394","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"7F5GIHVBLSCUKJCHMZDJPQ6M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Quite as","description":"Shoulder represent religious activity political too.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"5MFDMDJGSQT3RLWTKKMCEXLY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7F5GIHVBLSCUKJCHMZDJPQ6M","name":"","sku":"1068","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115762} +{"stream":"items","data":{"type":"ITEM","id":"3UK3UX3MCPJ3KIJXJTTZ4KWV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Field line","description":"Film participant decade ground issue organization.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"OF6GJMZP4KB74UT447R7YMMW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3UK3UX3MCPJ3KIJXJTTZ4KWV","name":"Finally","sku":"129","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":7300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"T4HPC3BPALVJZ233NOLVVFFP","item_option_value_id":"MEQJHVZ4AXVVQMYVXVQ4FTD3"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TOAU2YRQGZ4ZF6J4OUX2BZHX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3UK3UX3MCPJ3KIJXJTTZ4KWV","name":"Federal","sku":"129","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"T4HPC3BPALVJZ233NOLVVFFP","item_option_value_id":"TOWZOCSTWR2SUZMIH5XDV3HW"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"T4HPC3BPALVJZ233NOLVVFFP"}]}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"MBNZVNBUXAG4RLV7UW7QL4IX","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"American need","description":"Nature hope change news. Somebody form fund whatever senior.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"JJ6KGSL4W6QORZADRPVP7LDZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MBNZVNBUXAG4RLV7UW7QL4IX","name":"Financial","sku":"216","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KYJVATXRJYBVAVKPFRJZC3GY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MBNZVNBUXAG4RLV7UW7QL4IX","name":"Skin","sku":"216","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":10200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"EIW7PZSYDVPVDUEJQELB5MOP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Then number","description":"Even wonder same child short. Bad lead draw language.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"VBATYXG5Q5EJ2GKM57YJ2UG2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EIW7PZSYDVPVDUEJQELB5MOP","name":"","sku":"302","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"V44JNXMICM6UKPY2EJFRY3IF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Project often","description":"While across election mind require attorney writer.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"EG2MFACQUFQQBOQOYPNBR4I3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V44JNXMICM6UKPY2EJFRY3IF","name":"","sku":"437","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"L5I4TFTIZZWFT2U5JX4B4J4U","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Away war","description":"Plant game answer building decide.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"KAMFIXBZCL6M6YN65LEQ4KLI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L5I4TFTIZZWFT2U5JX4B4J4U","name":"","sku":"484","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"WDRY3PTQULO5WFS5PR2YIBMP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Listen reach","description":"Pay lead area expect system.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"RZZHG7DJTG2P77KEMSYPCZT5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WDRY3PTQULO5WFS5PR2YIBMP","name":"","sku":"1045","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"LDPVEOL4KFDGHLRXYII4GZZT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Usually by","description":"Could pressure decision opportunity national late feeling.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"7JJPPY54DHBV3C5OHT7FWGRT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LDPVEOL4KFDGHLRXYII4GZZT","name":"","sku":"147","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"DPYRPAQ6GYJZXH2HKLN4SPPB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Attorney decide","description":"Half amount somebody industry.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"XI6F5V5JW2KTFS5X45WTZSQU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DPYRPAQ6GYJZXH2HKLN4SPPB","name":"","sku":"270","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"GM5V2GXGMQ7LFN6SJSWIABQT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Within box","description":"Computer and market by. Future explain run thousand religious view down.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"TPX64XYDZM4DUF55KI2EAWCZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GM5V2GXGMQ7LFN6SJSWIABQT","name":"Learn","sku":"501","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"64HZVCVXLPCNI4MFB4KZQTJD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GM5V2GXGMQ7LFN6SJSWIABQT","name":"Similar","sku":"501","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115763} +{"stream":"items","data":{"type":"ITEM","id":"RA6727WESTYQTOFIVVZCMBWU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Where better","description":"Course wide modern alone this employee. Offer technology put television.","category_id":"3F6KPRH2SRONZN5ACBGW6DDS","variations":[{"type":"ITEM_VARIATION","id":"WNKPNONPTHANKQ6LBIPNMJJS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RA6727WESTYQTOFIVVZCMBWU","name":"","sku":"1103","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"T2VCOBQJGLZGKHZ7BEMPZEX5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Enjoy sea","description":"On draw PM boy nearly lot medical.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"IXR7OEFK6GJ4MQVNBV25RUAG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T2VCOBQJGLZGKHZ7BEMPZEX5","name":"","sku":"562","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"U7MLZVTKQCUFO6RBG6CENP34","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Huge city","description":"See common mouth consider trial occur. Fire magazine seek key wear far media.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"546EQCJ7XPAA26YIGRXCGYG7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U7MLZVTKQCUFO6RBG6CENP34","name":"Production","sku":"691","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"N7BQYBF2PCK2FKWACI65ZUYE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U7MLZVTKQCUFO6RBG6CENP34","name":"Head","sku":"691","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"RJINH633K67EUGL2MSH64IUG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"That unit","description":"Until fear see majority huge experience season.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"EDCBY2J4ULUR2KY7VYWGTWBQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RJINH633K67EUGL2MSH64IUG","name":"","sku":"968","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"D42KRPUY3RWKPHCRY43E7WR6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Our executive","description":"Window decision Republican operation. Operation nothing without.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"PKPCAQQDVZEYR5IWSBR5DJM6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"D42KRPUY3RWKPHCRY43E7WR6","name":"","sku":"998","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"WVLDXEDYFXNJ4AKJKYYYL2NT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Floor citizen","description":"Art property ball physical. Local between machine chance they production.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"5LCXT23E3KQ5CILZTDXA4AJP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WVLDXEDYFXNJ4AKJKYYYL2NT","name":"Market","sku":"417","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":19800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"V5Y42R7GXI5I3D474QMPVKZR","item_option_value_id":"WIASLMIKRPU4B6GPUNCYDCUZ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BNR4JU6JISSG7C35OR7IWA7R","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WVLDXEDYFXNJ4AKJKYYYL2NT","name":"Southern","sku":"417","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"V5Y42R7GXI5I3D474QMPVKZR","item_option_value_id":"6VUHHL7ZKSMXZXDWSGSG3F75"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"V5Y42R7GXI5I3D474QMPVKZR"}]}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"AUUSAJ5QQ4FNZEMRIKAE6SLJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Number future","description":"End policy American grow authority mind. Admit indicate again strategy.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"R73PPGNND4LOYSDIRF4XZSJM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AUUSAJ5QQ4FNZEMRIKAE6SLJ","name":"","sku":"917","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"IBYCDVTIOVVMQRPDTHWQ7IS3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Entire center","description":"Hotel form top begin care. Alone whatever list rise understand.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"TVJSW2VH7YWWBW37DVIHIBUT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IBYCDVTIOVVMQRPDTHWQ7IS3","name":"","sku":"1038","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"PQTZ4WNEHTAHYHIAJCSWW5AN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Huge wall","description":"Start be join significant hold movie. Say all stand common.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"NBQTWMKM7IX3BGB2O6DQHR6E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PQTZ4WNEHTAHYHIAJCSWW5AN","name":"","sku":"198","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115764} +{"stream":"items","data":{"type":"ITEM","id":"76SMMIWRIUDBDOKQP5J2RUOW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Difference side","description":"Mrs finally wind food. Out record near identify in free.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"F5A4ZL5ZBGRQOXMLGXJ3VZPB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"76SMMIWRIUDBDOKQP5J2RUOW","name":"","sku":"370","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115765} +{"stream":"items","data":{"type":"ITEM","id":"6IUOA4SDKNHN2QNDDVQDNOMV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Other kid","description":"Area indeed manager. According system concern sure source hour.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"H23YXN5KQ63N6PMCP2OKEBD4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6IUOA4SDKNHN2QNDDVQDNOMV","name":"","sku":"443","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115765} +{"stream":"items","data":{"type":"ITEM","id":"OYG66BMIKCY6CWL6V5FBZS5E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Make pay","description":"Beautiful help with address technology. Method affect kind throw.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"5Q2EUMQMSJHJTK2SIVIGSI6N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OYG66BMIKCY6CWL6V5FBZS5E","name":"","sku":"694","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115765} +{"stream":"items","data":{"type":"ITEM","id":"W3AKEKHECTWOR463BXH4LD2E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Challenge want","description":"Check involve water cold arm dream dark small.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"TYL3HO4NJ6L56GYABK26U247","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"W3AKEKHECTWOR463BXH4LD2E","name":"Easy","sku":"136","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DHTYXZZZO6QTM45PL2M3PQDJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"W3AKEKHECTWOR463BXH4LD2E","name":"Over","sku":"136","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115765} +{"stream":"items","data":{"type":"ITEM","id":"B5JZIH7XMYOLOJBENHKFCUH5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"On common","description":"Condition born evidence position.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"4MOSAPOEKAK6KLA656DPYE6L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B5JZIH7XMYOLOJBENHKFCUH5","name":"","sku":"319","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115765} +{"stream":"items","data":{"type":"ITEM","id":"GN5UXOPAYPNYZ2YIBQ3LRWHK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sell four","description":"East him enjoy wall. Cost million health free beyond third.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"S246IJNYAJ4IVDETCK4B4NAJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GN5UXOPAYPNYZ2YIBQ3LRWHK","name":"","sku":"622","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115765} +{"stream":"items","data":{"type":"ITEM","id":"T5TB53OQN36X5V3I44EJZA2G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Course behind","description":"Wide local like into right probably sit. Garden note plan most happy.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"3D6J64LOGKCYZ5YRTRCNGPOD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T5TB53OQN36X5V3I44EJZA2G","name":"Whole","sku":"649","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":20300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"LC4JHQV2UMQEPI45KMBE5MOR","item_option_value_id":"5B5FEMVBU5Z5HAPR2P6UEJJR"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZIZKI66C6SWBXR7RCHAXTBHR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T5TB53OQN36X5V3I44EJZA2G","name":"South","sku":"649","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"LC4JHQV2UMQEPI45KMBE5MOR","item_option_value_id":"PJD3JA5AEVA7EVD7SBUYO7IK"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"LC4JHQV2UMQEPI45KMBE5MOR"}]}},"emitted_at":1668290115765} +{"stream":"items","data":{"type":"ITEM","id":"LT7DIYTEPS3M367HAXNGFVQC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sing itself","description":"Mr recently specific shoulder. Firm down long. Boy turn mother.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"OCSMXMMW6GCLBOTZWFTBX3PY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LT7DIYTEPS3M367HAXNGFVQC","name":"Product","sku":"111","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6E5PJT4R56DOBRSRRTJ4WKSQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LT7DIYTEPS3M367HAXNGFVQC","name":"Heart","sku":"111","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115765} +{"stream":"items","data":{"type":"ITEM","id":"GIT6GK3BNXMTDMZEQ7DUIZZD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Onto alone","description":"Pm wonder be would bed store. Interesting become shake college.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"LBTDFSW6QAXN5T6EQPJTJHYF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GIT6GK3BNXMTDMZEQ7DUIZZD","name":"","sku":"338","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"ZSAQYJ5J5UUWT2RDK5ZCCFZC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Nation born","description":"Long better information section bank some.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"FUETAYKX63HSMAU4AC6ESR6S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZSAQYJ5J5UUWT2RDK5ZCCFZC","name":"","sku":"718","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"7QVXSQJVSMI42IXWIQ6JXFBI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Receive production","description":"Attack ability anything.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"JB6VKF65DWZHIQ62Z4ZJHHRY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7QVXSQJVSMI42IXWIQ6JXFBI","name":"","sku":"128","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"O6R3EIYFBQYPOH3SI72ELSS3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Local her","description":"Wind since laugh certainly rise.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"AD2WXNOVTO3U53YN6GKQWI6G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O6R3EIYFBQYPOH3SI72ELSS3","name":"Through","sku":"661","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"HJM3NV3PPBIIUEREDFCP3ISX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O6R3EIYFBQYPOH3SI72ELSS3","name":"Who","sku":"661","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"3MZEJDTZBERAFSUVN3E3J7NS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Citizen should","description":"Financial our number side. Those admit according. In leg what guy.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"5RANVHTS5PUXSKCOXOVXZJJL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3MZEJDTZBERAFSUVN3E3J7NS","name":"Would","sku":"169","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"BIMHHPKP4ZU3BXJQ37EO3ELF","item_option_value_id":"YY33ULLZGEJQZ26MDNDD46EN"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LK7IRH7FU52BTFMVALLDUAAM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3MZEJDTZBERAFSUVN3E3J7NS","name":"Family","sku":"169","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"BIMHHPKP4ZU3BXJQ37EO3ELF","item_option_value_id":"NFMPUGSMTV6GU3UTR743VJ64"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"BIMHHPKP4ZU3BXJQ37EO3ELF"}]}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"J7HSKAB7MKKPZ3FC32TFJUDU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Skill four","description":"Seek kind pressure. Majority generation continue education.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"UURXRPSFMUGGCDK7BOETUVEG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"J7HSKAB7MKKPZ3FC32TFJUDU","name":"Cultural","sku":"233","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":13000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SP7GSF6RRU456Y2SZWOGJ2ZV","item_option_value_id":"5OVBO4C5EGF3EE67XACW7E4V"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"XT6JORD64NV4G27DOY6RLIM7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"J7HSKAB7MKKPZ3FC32TFJUDU","name":"Call","sku":"233","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SP7GSF6RRU456Y2SZWOGJ2ZV","item_option_value_id":"ET7YHHFX26HEMSELSCVSULDT"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"SP7GSF6RRU456Y2SZWOGJ2ZV"}]}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"YIDZM76MA45JOTMWD4GSUKRU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Through media","description":"Each share spend experience boy him art take. Space kid over.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"2OONVIWDRWRTR7YGFJOXB2LV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YIDZM76MA45JOTMWD4GSUKRU","name":"","sku":"832","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"TSDSN5QFC2KCKO5S4T6ROF27","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Special economy","description":"That state treatment test particular better everybody ok.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"EOWJKYDKWOB4XGD4WZDPFJH2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TSDSN5QFC2KCKO5S4T6ROF27","name":"","sku":"395","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"NREYYZLC74VW7NJBP53L7U7O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Contain two","description":"Should night sing box Mr. Nation pretty major.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"L23EXAIE3RIPAEZSCO3T52MB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NREYYZLC74VW7NJBP53L7U7O","name":"","sku":"477","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115766} +{"stream":"items","data":{"type":"ITEM","id":"IMR5S4NPROXWLPL2JZWKHXVM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Section social","description":"Explain stock artist organization. Position commercial science city throw.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"24C5QEHVLZFW3E4QBVY3A5RY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IMR5S4NPROXWLPL2JZWKHXVM","name":"","sku":"678","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"BFRE7DXC2RMVV44ULDYRJMPS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Court most","description":"He peace reach issue. Key what forget. Wait happen that glass clearly.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"NU5THC75VZEKN2GCGUJRYCWZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BFRE7DXC2RMVV44ULDYRJMPS","name":"","sku":"325","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"DL7CCG5YMJQRGPWHL2UVHWWB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Water himself","description":"Poor between likely culture your. Shake Congress agent left leader.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"CWFKCE7RDYJNODEQSXH7R2I5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DL7CCG5YMJQRGPWHL2UVHWWB","name":"","sku":"757","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"6R3EEMX5Z27Z3BEJ7NS7V5WS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Course note","description":"Former similar road Mr available. Season note painting seek thought.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"YBM4QR6TKLUGRFBTEPJRLFSX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6R3EEMX5Z27Z3BEJ7NS7V5WS","name":"","sku":"910","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"DZBU4TQXQAZYMJ4DTAK53WJH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Assume state","description":"Commercial stock main you career big. Operation community recently everyone.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"4CXBT2XHFDVSCNHAJIZ2O4UB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DZBU4TQXQAZYMJ4DTAK53WJH","name":"","sku":"279","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"7XQCSHKWKWAYYMLI2TMUDPHA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rich through","description":"Card money develop. Week condition week local despite when send.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"TP3TNHL2DNIPTAXKOG2ZSTDR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7XQCSHKWKWAYYMLI2TMUDPHA","name":"","sku":"429","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"35ILGPE3RYIZYBGRGDEB7L4L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thought serious","description":"Director during produce ability opportunity.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"BLCKF5OVQD52DK6373CNYEMZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"35ILGPE3RYIZYBGRGDEB7L4L","name":"","sku":"575","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"OH4TG2U32XNF7EWHNYQF46HF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hear mention","description":"Fill Republican service bar speak. Property economic condition many.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"7VNJYTL3UY3UOUH3MAGW53O2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OH4TG2U32XNF7EWHNYQF46HF","name":"","sku":"698","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"GTV5WSY65WFSQ32UU46POYUY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Imagine court","description":"Quickly sense agree visit. Image more majority her strategy.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"AQTJ3RBMUXUFVQKKUPHLRUFC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GTV5WSY65WFSQ32UU46POYUY","name":"","sku":"704","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115767} +{"stream":"items","data":{"type":"ITEM","id":"G6LLNG7MGNX6XWPW52FYCMAS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Material final","description":"Vote deep reflect room. Effort fight bad major TV do beautiful character.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"ZL2QFE4ISXEE7SA4K63DKQY4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G6LLNG7MGNX6XWPW52FYCMAS","name":"Itself","sku":"871","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QLRVTUZMB24B5R2TTBTKLA5Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G6LLNG7MGNX6XWPW52FYCMAS","name":"According","sku":"871","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"HNW7PJTUE4KA3PAA5DB7CPZJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Simply long","description":"Must rather security whole seven. Imagine team office first.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"C63FB2NVAI4R47PIWZCRQ6TF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HNW7PJTUE4KA3PAA5DB7CPZJ","name":"","sku":"944","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"EJ4ATBKZ6UGFVSZ7WFL5CQG4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Police quality","description":"Action create student stay mother lose game. Attack cost level knowledge.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"RQN7SAU223U3OHRVRXE3Q7ED","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EJ4ATBKZ6UGFVSZ7WFL5CQG4","name":"Mean","sku":"206","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"UVXHLWS5TOZJ5JEOEOAP5DXD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EJ4ATBKZ6UGFVSZ7WFL5CQG4","name":"Matter","sku":"206","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"KXH4Y6ECYDTHX6JARQXKCNXX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"East first","description":"Glass system its avoid. Along anyone foreign American forward off three.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"R26IKPI6AK76BNV7MLHXUYQC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KXH4Y6ECYDTHX6JARQXKCNXX","name":"","sku":"848","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"CB3AO4FZXSP7RKDN5X5Q3NV4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bill arm","description":"Dog age letter per. Idea health ground ok coach room population school.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"PTB7SGVUE5XAAWSCEY33KKH4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CB3AO4FZXSP7RKDN5X5Q3NV4","name":"","sku":"860","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"PRJ5NOEQ6GCEWOYBTPFL5LXS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Financial natural","description":"Real find firm plan power from natural.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"BOUMG32AM4PICC2W2U6L2IRV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PRJ5NOEQ6GCEWOYBTPFL5LXS","name":"See","sku":"401","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":30000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WKBCCMZSOONEFUF7G2HUQPPS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PRJ5NOEQ6GCEWOYBTPFL5LXS","name":"Friend","sku":"401","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"CPPI3I3I5D76RRRMFPJLR5DE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wind beautiful","description":"There shake international drop with professor tough.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"QC2VCNSGWGPWVDSTNNXUMDR6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CPPI3I3I5D76RRRMFPJLR5DE","name":"","sku":"530","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"4F5ETKPNBWL3GRWDFA3E6FJY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Senior test","description":"Simply hear trade individual. Deal cup line born set blue traditional see.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"75UNKZANBYXXBVRFSNRA2E3B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4F5ETKPNBWL3GRWDFA3E6FJY","name":"Candidate","sku":"1071","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZVQ2EQNVM6V5PHCQC5TCGCOT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4F5ETKPNBWL3GRWDFA3E6FJY","name":"Line","sku":"1071","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"ERSIB5C23MAZOZTMJIAMCHIQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Control threat","description":"Clearly pretty inside see pay natural.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"73J4GJKKBKQKMSM5O6HMAETH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ERSIB5C23MAZOZTMJIAMCHIQ","name":"","sku":"498","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115768} +{"stream":"items","data":{"type":"ITEM","id":"ALVIAGHPHVJ2X73IRHMFL253","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Three treatment","description":"It occur suffer fish box population. Decade officer per science notice.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"JEDYTVFQA7NIX3XPGYJPALIL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ALVIAGHPHVJ2X73IRHMFL253","name":"","sku":"837","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"5EA2FLSPTCPUSHQTKXD74SOA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Collection hotel","description":"Write avoid join stage environment. His yourself network door history.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"WC66ALQIJBR7FXEBE3PLDHJK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5EA2FLSPTCPUSHQTKXD74SOA","name":"","sku":"1100","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"VJNRGLVACDMGBX7BMIGTJDEQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Until but","description":"Artist strategy four personal. Certain sit foreign beyond such real.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"O6BM2WS63EWH5TOELEBZUKKX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VJNRGLVACDMGBX7BMIGTJDEQ","name":"","sku":"402","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"LQMXK2RGZCWVJWJBDA33EECQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Participant then","description":"Through medical thus measure few church line. Capital music though investment.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"T2APGZP7W6HTRCCC3ZCTNH6Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LQMXK2RGZCWVJWJBDA33EECQ","name":"","sku":"1003","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"75R2KX32YX6MDHQNJVHD7HNG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sound note","description":"Defense doctor expert face produce leg. Television economic these read.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"YOAF3WPHJXLNE4MZVIIGAQ2G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"75R2KX32YX6MDHQNJVHD7HNG","name":"","sku":"199","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"777GRWLR4VJ5ZNGT2EXW2OYJ","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Action stand","description":"Treat ever both beat. Step close recently save cell work wonder.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"CUU6LW62OKG7JLKJZBSLURDR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"777GRWLR4VJ5ZNGT2EXW2OYJ","name":"","sku":"565","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"JZ4ZDZWQ7WMCRZNJN6TX4326","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fast help","description":"Seek voice just professional street investment.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"BLEI4CEAV4FVCAJYKD2KL55W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JZ4ZDZWQ7WMCRZNJN6TX4326","name":"Moment","sku":"571","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ED6WFFNJZIFKBYHPFQGUM5H6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JZ4ZDZWQ7WMCRZNJN6TX4326","name":"Nice","sku":"571","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"IZJPPGMOPV3WHIE3MFXLJFND","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Remember whose","description":"Information minute central pass since business save.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"4CJI3YUDU5KEXWJBOW34K5CH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IZJPPGMOPV3WHIE3MFXLJFND","name":"","sku":"607","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"5Z4HM65OWYN5EBWEIRMIN5ML","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Young easy","description":"Your nothing sea new pay table few. Sister support fine movement.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"I7YWON3TOTLTKB7AQ4M5OVKU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5Z4HM65OWYN5EBWEIRMIN5ML","name":"General","sku":"897","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"FI5O5XD3BBVUFAIQZ453PDRX","item_option_value_id":"ZEP2YNLUB4EXKUYQLHBT647Z"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"HDDJQ67WN356EST53WH5ULZ4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5Z4HM65OWYN5EBWEIRMIN5ML","name":"Option","sku":"897","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"FI5O5XD3BBVUFAIQZ453PDRX","item_option_value_id":"YZTONM2CYN6UCR72VYNMFVUZ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"FI5O5XD3BBVUFAIQZ453PDRX"}]}},"emitted_at":1668290115769} +{"stream":"items","data":{"type":"ITEM","id":"6PDSZBHXXQR5C2JWSKQUCNK7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Address reach","description":"Care onto lot attention computer case. Two and character piece today.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"3AOHWPUA225E5D6XYWLO6ZYO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6PDSZBHXXQR5C2JWSKQUCNK7","name":"","sku":"1040","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115770} +{"stream":"items","data":{"type":"ITEM","id":"LSQDWAQ7I5SRZZFYTVTULRYI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Become partner","description":"For by impact including finish. Book social ball exactly hope report level.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"TVDJNXGF3ETXRQ3NOUA4GNZW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LSQDWAQ7I5SRZZFYTVTULRYI","name":"Ability","sku":"449","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"V5Y42R7GXI5I3D474QMPVKZR","item_option_value_id":"KPBSXM3SHI7FX3TX5QR4S5CL"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PDLAXX7OLNM4TVIH5JEI725F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LSQDWAQ7I5SRZZFYTVTULRYI","name":"Girl","sku":"449","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"V5Y42R7GXI5I3D474QMPVKZR","item_option_value_id":"HHI4KZYYQV3UE7CP3KYPHSCV"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"V5Y42R7GXI5I3D474QMPVKZR"}]}},"emitted_at":1668290115770} +{"stream":"items","data":{"type":"ITEM","id":"DN6V635KQ2MBAVES4QCNCEH5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wear impact","description":"Your those market happy. True quite arrive although fall together either.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"7GEEMQBBPKI4W5KC6XZHGEDG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DN6V635KQ2MBAVES4QCNCEH5","name":"Chair","sku":"497","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":23700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"F24HJYOVZN2N6S5SVKFJKJDW","item_option_value_id":"4G3FWZEAOLCUJDJIR4KGEFN5"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FWJTP3R664XBPKKS6DKPVWR3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DN6V635KQ2MBAVES4QCNCEH5","name":"Office","sku":"497","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"F24HJYOVZN2N6S5SVKFJKJDW","item_option_value_id":"TZJKZD6ECRPCRNITRMMIAL3Y"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"F24HJYOVZN2N6S5SVKFJKJDW"}]}},"emitted_at":1668290115770} +{"stream":"items","data":{"type":"ITEM","id":"DAE3MICU45T6B557C32IJJF7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Stuff rich","description":"Social movie human. Material probably area grow.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"IQDGKVLUS5Z2H2RKWLOXEZMG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DAE3MICU45T6B557C32IJJF7","name":"Add","sku":"753","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":23100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"HEBIOMEORT62DGVRK4NADAIO","item_option_value_id":"EPF7PBLKUKQRTLVM5CTVRC6U"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VH4PYK776JFP2KTLY2BYC2LN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DAE3MICU45T6B557C32IJJF7","name":"Them","sku":"753","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"HEBIOMEORT62DGVRK4NADAIO","item_option_value_id":"GHZWLQCLUEX47CPQHGTQE3W3"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"HEBIOMEORT62DGVRK4NADAIO"}]}},"emitted_at":1668290115770} +{"stream":"items","data":{"type":"ITEM","id":"RT2YZJPNQX7AHJKMDFHXB4OL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thank interview","description":"Affect education but born nation others.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"AUY552ORXTJJTC3CMYE6PJGQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RT2YZJPNQX7AHJKMDFHXB4OL","name":"","sku":"950","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115770} +{"stream":"items","data":{"type":"ITEM","id":"HJWO62DOEFVKJ7DDMLKMA5I5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Teach clear","description":"Fill result every down. Pass woman couple special do beyond.","category_id":"3F6KPRH2SRONZN5ACBGW6DDS","variations":[{"type":"ITEM_VARIATION","id":"VUSGGIR2WBWSJ32RM47OJXJT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HJWO62DOEFVKJ7DDMLKMA5I5","name":"Kid","sku":"1105","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":7300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"X3KBQ45SMOANGQMRFVCT7CW5","item_option_value_id":"4BTJC6CZ6ESMC3ODA7E7AS5M"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NIAFSNCI7PEENI42RMBEKG7L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HJWO62DOEFVKJ7DDMLKMA5I5","name":"World","sku":"1105","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"X3KBQ45SMOANGQMRFVCT7CW5","item_option_value_id":"6ETSWYZTZXMK5N7HU5BV6XLG"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"X3KBQ45SMOANGQMRFVCT7CW5"}]}},"emitted_at":1668290115770} +{"stream":"items","data":{"type":"ITEM","id":"FX6Z7IK2EI7BLEG3G56FXTX5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Pressure eye","description":"Close at offer PM my can Mrs.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"NAVX3CDFA4YDU4F6YICFWVQ3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FX6Z7IK2EI7BLEG3G56FXTX5","name":"Operation","sku":"153","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":20500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"D3YPAMOSZKOF4TLF5W5KYOIJ","item_option_value_id":"HRJE4ZOTEF7HENY5HZQFXSRI"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"36RND222ECNMRZGCH4VLAOSK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FX6Z7IK2EI7BLEG3G56FXTX5","name":"Relate","sku":"153","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"D3YPAMOSZKOF4TLF5W5KYOIJ","item_option_value_id":"ASK6PHHBXERLRF6BZ6YDVDKS"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"D3YPAMOSZKOF4TLF5W5KYOIJ"}]}},"emitted_at":1668290115770} +{"stream":"items","data":{"type":"ITEM","id":"GDBRSPZVDTMA7WFNIEZIFFAA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Perform city","description":"Purpose training year alone. Soldier today likely be. Go Mr still usually.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"PP3SHLAGB4TONOP5I7GODLMU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GDBRSPZVDTMA7WFNIEZIFFAA","name":"","sku":"340","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115770} +{"stream":"items","data":{"type":"ITEM","id":"OSK3BXROY3RNBM7DKQMPK7FI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thing year","description":"Third rock garden difficult now see town. View seek fill.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"JUXTLFNR4T5HLNGHWGD4G5KN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OSK3BXROY3RNBM7DKQMPK7FI","name":"","sku":"903","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"EHJIVYU7TBFYPWISVFRIZGOB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Close large","description":"Purpose feeling game ready PM travel pass.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"O72P5NHZBM2AW5GV6IFZ6HIW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EHJIVYU7TBFYPWISVFRIZGOB","name":"","sku":"414","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"DSFLOM4GGMEAZDTNRAIESFJM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Head success","description":"Design realize game new significant happy buy.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"GUOJCLCQO2FS3476X3DZVGQY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DSFLOM4GGMEAZDTNRAIESFJM","name":"Body","sku":"889","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":28700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"N3FKVQTU7OVIRLIWHRYJ6ENC","item_option_value_id":"4AOA4FMYA2JFXLQRXGD2O2WS"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"MK45H25V7QBPWHKMMWAEVKTI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DSFLOM4GGMEAZDTNRAIESFJM","name":"Cold","sku":"889","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"N3FKVQTU7OVIRLIWHRYJ6ENC","item_option_value_id":"TIFTN3IIW4WP6PZDARWRV4G5"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"N3FKVQTU7OVIRLIWHRYJ6ENC"}]}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"BNJIUL7HFWHZJ7DZ4WNLLA7Z","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Article a","description":"Happen specific hit interesting baby where national.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"HMFB3J2JC47XQE62D3TETJBA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BNJIUL7HFWHZJ7DZ4WNLLA7Z","name":"Great","sku":"393","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"JXMMGG7OC5QFJJRP5DBKC2CQ","item_option_value_id":"2KTAM7NLIKUH6GVQS3SG3VIV"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DNEXF3EOIDJVZA7YKLK3GDH5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BNJIUL7HFWHZJ7DZ4WNLLA7Z","name":"Common","sku":"393","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"JXMMGG7OC5QFJJRP5DBKC2CQ","item_option_value_id":"3JHZXQX3Q6NFEAXYP4RAH64N"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"JXMMGG7OC5QFJJRP5DBKC2CQ"}]}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"QTEEKOKRDLP5WWWTTEYSJSSV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Response friend","description":"Test partner seat similar inside subject skill.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"3JXH6UOHW4NITBSVD4LJSB52","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QTEEKOKRDLP5WWWTTEYSJSSV","name":"","sku":"187","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"7U54YKIN3FDJSITFRBX5QOR3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Toward listen","description":"Must spend what democratic Republican attack final.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"YEFHCQ4EC2ESOHCYZKON3IHV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7U54YKIN3FDJSITFRBX5QOR3","name":"","sku":"315","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"6FEUXMLPEU2LMPIO7ZWPYKM5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whom age","description":"Animal last believe drive. Tend game himself it fight. Experience team third.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"MNO3YY3BJ43GI4XFDK463HB2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6FEUXMLPEU2LMPIO7ZWPYKM5","name":"Forget","sku":"411","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QBWGBVAMV4N374MG6EIOILJL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6FEUXMLPEU2LMPIO7ZWPYKM5","name":"With","sku":"411","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"4ZMOQTLG5ZOCAF7JUSYQ22RR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Team but","description":"Whole catch nearly your role series something.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"R4X6G2SMDZ7JRYJIMLLS6HIY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4ZMOQTLG5ZOCAF7JUSYQ22RR","name":"","sku":"559","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"XJ3BPJ4HUWLEFDSFT2M3MMG2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Blood billion","description":"First indicate window appear current. Thing push see century firm start seem.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"OURTX2OXQ7Z37BBUHPRKHSV6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XJ3BPJ4HUWLEFDSFT2M3MMG2","name":"","sku":"1087","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115771} +{"stream":"items","data":{"type":"ITEM","id":"7GDGRKVKRGLUDJGTJTNRYTIZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Choose animal","description":"Quickly less particular probably reveal spend or blue. Teach baby like such.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"XZNAFPG3SKARXKHJ3SVKXOD4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7GDGRKVKRGLUDJGTJTNRYTIZ","name":"","sku":"159","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"ACXLAB5MWPLXXB4I7OJHU4ZT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Operation brother","description":"Very yard site. Stage movement event space health by several. Wide stage agent.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"S5OHILAB5AUQKPKWUNBZJZFG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ACXLAB5MWPLXXB4I7OJHU4ZT","name":"","sku":"539","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"UTJGXRFK7MDOCXMKKWK5RSUZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Drive way","description":"Leg plant strong. Nice bring local during everybody. If option enjoy.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"XR2OVA4G7FJ3ZOXVFWQ3QFFC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UTJGXRFK7MDOCXMKKWK5RSUZ","name":"","sku":"535","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"L5H2HEXXVCW3PMSYRNQQYDO2","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Animal see","description":"Garden point that network. Trade family seven sister behind.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"SW4WB2J3NZTYSGPZYHAL7K2G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L5H2HEXXVCW3PMSYRNQQYDO2","name":"Prepare","sku":"861","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JXJYBL2PPGHAJXHDKYJMCIKB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L5H2HEXXVCW3PMSYRNQQYDO2","name":"Image","sku":"861","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"L6DN5HJGFI43VX7ZSZGHQ7EH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Trial house","description":"Decide performance model hair Congress. Program surface rather upon reach.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"SOJPEYINVWOQVEPP2A7KL6DF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L6DN5HJGFI43VX7ZSZGHQ7EH","name":"","sku":"952","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"R44GHED76ACEB2I3X2NATZJU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sister positive","description":"Teacher course role strategy require.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"ZQ44OWAV6ZQQBWJALQSY5KL5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"R44GHED76ACEB2I3X2NATZJU","name":"","sku":"117","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"GX65J27FJBZJXOTX2EJ4RK6I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Increase indeed","description":"Among sense make program on least. Player in long nothing final.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"2VA4TJX4OARJG72AMWKNPCAQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GX65J27FJBZJXOTX2EJ4RK6I","name":"","sku":"684","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"Y4PJ3HFLOHKO3JZGS4XUFWZI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bar ready","description":"Single wind thus radio. Performance black full.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"SONIU2DDAHYCLTOURV7AKREA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y4PJ3HFLOHKO3JZGS4XUFWZI","name":"","sku":"755","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"T5KELZYGO3SMPH3QIXKUY72V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Person old","description":"Goal where sense all college. Couple would blue meeting.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"6DTFPLUPHRIE36CXWWSDRYDC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T5KELZYGO3SMPH3QIXKUY72V","name":"","sku":"882","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"L7V5BH7W76XTY5OHSXTAR6YE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Nothing continue","description":"Many single than fine close inside. Thus inside increase.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"HTDRTU6IZ2XZRH27MSXDD4QV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L7V5BH7W76XTY5OHSXTAR6YE","name":"","sku":"942","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115772} +{"stream":"items","data":{"type":"ITEM","id":"L2F5XMNXUCTCKMUGNPRFAM27","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Left manage","description":"Kid involve relate star professor home call.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"SSZ3F4WDVLB5J5KO4YRYH5OI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L2F5XMNXUCTCKMUGNPRFAM27","name":"","sku":"1027","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"RM3V4DICAQNO7OGUYGIDDLE3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Partner question","description":"Large girl right vote television manager provide. Resource without spend group.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"2Q3QV72ZGSUWZTORRX3DUNAC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RM3V4DICAQNO7OGUYGIDDLE3","name":"","sku":"525","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"Z4XK75LEDYB4EP7FAQNF42V4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Turn tough","description":"Growth ball success attack control seven. Gas pretty training remember wear.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"XA3SWB2BB57VFD3ZXU2NS47S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z4XK75LEDYB4EP7FAQNF42V4","name":"","sku":"754","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"LWZ3MVGZ5RLNJAVV4QKNYO5Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Seek federal","description":"Suffer long begin among Mrs late.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"AIOL3O335PYKRVYLX23C75OD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LWZ3MVGZ5RLNJAVV4QKNYO5Y","name":"","sku":"487","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"AR7GCNBSZ277YZJLHKSIQA6O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Deep far","description":"Computer open often wait theory rate career manager.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"HWXT4S3ZNQDCHZ3D2X3H3LF3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AR7GCNBSZ277YZJLHKSIQA6O","name":"","sku":"610","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"JZYSSVHTQGYO42UAPRMR4IQJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Doctor throw","description":"She fish sister public individual.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","variations":[{"type":"ITEM_VARIATION","id":"TEVXMVIRBWHZHH4GLSA55GKY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JZYSSVHTQGYO42UAPRMR4IQJ","name":"Court","sku":"791","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"57FCJVCCW3F6QC372JZLZ4ML","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JZYSSVHTQGYO42UAPRMR4IQJ","name":"Rule","sku":"791","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"KZHWLN4CBAZFPJ5AQW3TXJYK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Behind nation","description":"Of yes share fill method federal sense though.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"LUI5BIZTCQTJR3ZLC3CHVLWS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KZHWLN4CBAZFPJ5AQW3TXJYK","name":"","sku":"820","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"VVJKGIBQNFRURXRC4XNSIB4A","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Beat thing","description":"Quality song think trial natural our into.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"FAB5DCY5T5YCTG2UIT2HDWJ2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VVJKGIBQNFRURXRC4XNSIB4A","name":"","sku":"453","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"MFEM7DSXGBYIFYZMSUIX7AYG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thought well","description":"Who represent garden fall sign. Science young play test shake mouth staff.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"MIAU2XEMIMRDWYJ27ECONLGY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MFEM7DSXGBYIFYZMSUIX7AYG","name":"","sku":"680","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"6PB3DWADQNXBJH5HKYKKPNUM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Increase decade","description":"Image identify bring trial. Radio fish Democrat anyone.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"CJTGSOZZUVFBIZPKJVPC262D","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6PB3DWADQNXBJH5HKYKKPNUM","name":"","sku":"1064","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115773} +{"stream":"items","data":{"type":"ITEM","id":"BOHWPKLZAC6IEJKAWWW5SADU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Man discover","description":"Value option party factor.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"AZNCV74EIXRWZ3UIV5YTHCE6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BOHWPKLZAC6IEJKAWWW5SADU","name":"","sku":"478","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"K7AKZ5A7U4YCNAVMIBADFUBA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bed before","description":"General when provide far serve fact main. Face question process old the above.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"IN6SVCRZMU7MW7DHQDW64U6T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"K7AKZ5A7U4YCNAVMIBADFUBA","name":"Station","sku":"641","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VBKGCVG53XQZMDWMB6UPEBQE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"K7AKZ5A7U4YCNAVMIBADFUBA","name":"Pick","sku":"641","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":22100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"5UYCNYSWG6PKSVO35XIZ2W7T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Future occur","description":"Unit rich realize. None will figure adult prove public street.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"O3ZZX6ULVHTBPV4ZSNJFCMHB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5UYCNYSWG6PKSVO35XIZ2W7T","name":"","sku":"1030","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"YQHMJ2U5XCZNEUCXBWCV4F6D","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Put floor","description":"Age country food teach course most learn heart.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"YJ7R64X6DKYQ6AYDM3SY3G74","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YQHMJ2U5XCZNEUCXBWCV4F6D","name":"","sku":"1037","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"ENK2QBRQ2QEQJQXB6LGPUYAP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Them coach","description":"Rate difference commercial mouth table PM section.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"2IWWLLMNNJT5Y5XZKJGRN73I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ENK2QBRQ2QEQJQXB6LGPUYAP","name":"The","sku":"313","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":26000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"N3N4VKP6TS2V4DHAHMZBU3RU","item_option_value_id":"NDL5SMO3IJWOHZEBTK53OQYY"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PVSGEVGVCBRST66YVKKJDYXY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ENK2QBRQ2QEQJQXB6LGPUYAP","name":"Four","sku":"313","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"N3N4VKP6TS2V4DHAHMZBU3RU","item_option_value_id":"5H6R6ZKTDN4B6LBTANJYRRPU"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"N3N4VKP6TS2V4DHAHMZBU3RU"}]}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"GUA5THU7CSRUCMM75PQJEOHJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Nice thought","description":"Choice movie bad century international news story.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"H7IL5B4HJJZEG6BZA4MPXAX7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GUA5THU7CSRUCMM75PQJEOHJ","name":"","sku":"734","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"UMT45VRP7RTEGJOL5MWWG6RU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Meet because","description":"Course religious feel own. Pressure house color least put rather nothing.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"KKWUQKFJ67OWP5U2XTKTACBA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UMT45VRP7RTEGJOL5MWWG6RU","name":"","sku":"949","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"3ANYD4IIPQY2U6MEFN3KSTUC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sell miss","description":"Present seek learn billion people believe. Fill especially view.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"PXBHSPBZDW6HFKITDR2NR25M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3ANYD4IIPQY2U6MEFN3KSTUC","name":"","sku":"987","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"G6LIWBT4WTEMDQMNG36M5OMG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Clear to","description":"Table collection respond while. Door yeah fund some class.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"TJ7ZPOPAAMBLKQBMDLP2UCZQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G6LIWBT4WTEMDQMNG36M5OMG","name":"","sku":"1077","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115774} +{"stream":"items","data":{"type":"ITEM","id":"BSHMXAP6MAX4BTY5OMMDUGUF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hundred eye","description":"Serious religious several example key suggest.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"T6YPKUBKOAJJRGINC6YIDXKP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BSHMXAP6MAX4BTY5OMMDUGUF","name":"","sku":"278","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"A3BCYMOWH64L7XUOI7SAWJD3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Moment control","description":"Citizen realize make especially almost medical sell.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"W4G56UGWYRUPW4PSBQUMUONF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"A3BCYMOWH64L7XUOI7SAWJD3","name":"","sku":"309","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"IG2RJ4TLYXHORIRPRIWXEUBF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Address reveal","description":"Human push area visit behavior amount. Produce glass southern.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"4QPL7NL23UCA37EKAPMXDGJB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IG2RJ4TLYXHORIRPRIWXEUBF","name":"","sku":"479","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"T5UQTBCPYB3OY2GGQP3YVRGI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ground help","description":"Organization lawyer even three. Way side time no industry wear tend role.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"EF6OOSMLFG6DSCAVTE2NZT6V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T5UQTBCPYB3OY2GGQP3YVRGI","name":"","sku":"480","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"DMITVURLNBYYUOQCD7YOJZQK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Entire become","description":"Strategy international quality kind specific officer.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"MRR5WMLCPJ54MRGE4ERQG5UF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DMITVURLNBYYUOQCD7YOJZQK","name":"Out","sku":"491","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"HOT27FGRAXTH4OVC7LDVUN33","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DMITVURLNBYYUOQCD7YOJZQK","name":"Huge","sku":"491","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"WOP5FLRLOG6JXGVFB25C7OCS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Public change","description":"Employee night save site. Perhaps course keep control year.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"6YF5VBCIPZJ35I5MSEH24OB2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WOP5FLRLOG6JXGVFB25C7OCS","name":"","sku":"818","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"WEZ67KV666XTD375537S3IZD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Seek response","description":"Treat main figure laugh prepare when. Story one individual common region enjoy.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"IX3KVJ45I4EALAXLYRB7HJIK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WEZ67KV666XTD375537S3IZD","name":"","sku":"934","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"IK4FCDS4APIABSKF3PZNS5RL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Over easy","description":"Cup third none dream perhaps say million try. Television weight against price.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"NBEVJEJVF247PKZJ5JCSA4CY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IK4FCDS4APIABSKF3PZNS5RL","name":"","sku":"960","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"QHB3FA6AZFY4WRYGW3R6J4NZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Face dark","description":"Majority truth rather also fast age. Already than read blue before.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"TMBYCIRPQ4XXKGS7PB3543GG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QHB3FA6AZFY4WRYGW3R6J4NZ","name":"","sku":"620","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"NRPLQM25ETSSDHUAXYTEZWUL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Newspaper yet","description":"Push by town employee article. Note rise necessary successful others.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"AH3ZDJZ4H33U54TGWSNETSCB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NRPLQM25ETSSDHUAXYTEZWUL","name":"","sku":"645","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115775} +{"stream":"items","data":{"type":"ITEM","id":"J5MSMQXRBNMFY2GXTWJ23ZQP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Point ground","description":"Hundred mouth plan. Event month quickly right do suffer.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"VJCRBOVKC7GXTMAHAJEKFVDG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"J5MSMQXRBNMFY2GXTWJ23ZQP","name":"Crime","sku":"1036","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"5LAKCKD26ZVISMPVVDENW6BU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"J5MSMQXRBNMFY2GXTWJ23ZQP","name":"Oil","sku":"1036","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":3400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"FVZNH5QU7MDYKTZ3ZTYLRJG3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Key dark","description":"Woman better north but manager side recognize. Special read begin believe.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"YKRKG4NJRCEM5O4NMXZ3TURZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FVZNH5QU7MDYKTZ3ZTYLRJG3","name":"Food","sku":"1066","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BR7H43U6FEB6H3SKQBJXL2NL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FVZNH5QU7MDYKTZ3ZTYLRJG3","name":"Writer","sku":"1066","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":13800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"VJ4AMSCH3JZ2EF74OBEMW6JT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Professor perhaps","description":"Commercial truth cover once who travel various evening.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"BUGDRL44M32NW45N43EFJIKO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VJ4AMSCH3JZ2EF74OBEMW6JT","name":"","sku":"168","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"5M2MVRYX3T6J4M4MAKK47H4V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Small foot","description":"Yourself leader in international one seek plant similar.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"ERGCS3UL36IXWZFEMAPB6SPG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5M2MVRYX3T6J4M4MAKK47H4V","name":"","sku":"298","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"TYTHJ6BW5JMOUKSRYSDUEJLH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Record leader","description":"You rule treat. Southern direction left two left fear dog.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"DB6YJIIWQAEUMTUALZG6KRWX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TYTHJ6BW5JMOUKSRYSDUEJLH","name":"","sku":"379","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"C6EP26N4JLXKAQFSUNQSSM7Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Great measure","description":"On appear smile maintain story issue. Bit remember option past total.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"3HIJHZOBVFKZW4CVNNXKNB47","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C6EP26N4JLXKAQFSUNQSSM7Y","name":"Tv","sku":"576","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"2DLJYFESDDWWSZGWU2KOIJ5E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C6EP26N4JLXKAQFSUNQSSM7Y","name":"Wall","sku":"576","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":10100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"FNDRCBMMOAMPG37ZUN2XQ65G","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Add democrat","description":"Represent five claim who economic production fish approach.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"E3TAIFFQJCWBHYYPIL3DKDEB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FNDRCBMMOAMPG37ZUN2XQ65G","name":"","sku":"883","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"5RVL4POU5U4LGXTCW3FIPTSW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Class turn","description":"Like purpose side second generation field fear recognize.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"CA6QJIZ3HWGC46CBIGGXDLND","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5RVL4POU5U4LGXTCW3FIPTSW","name":"","sku":"322","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"RZC7LUSD7JGEVMRIL2W4Q5AI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Space section","description":"Economic cold station such again able. Race claim still west.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"2ZVSFL45OWNG33J7HXHHY4GB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RZC7LUSD7JGEVMRIL2W4Q5AI","name":"","sku":"584","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115776} +{"stream":"items","data":{"type":"ITEM","id":"X4F6WMVTH2UYR2J62DX6FV25","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lose national","description":"High very film ago possible tonight.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"U5BYYAV55HZZYYD6LKULELMM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X4F6WMVTH2UYR2J62DX6FV25","name":"","sku":"588","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"KFW4A5HTY3VDTHBBWGWW7Z6J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Reach security","description":"Heavy boy account positive federal wish explain.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"YRIRFJLYZKTBA6ZQHSJK5LTB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KFW4A5HTY3VDTHBBWGWW7Z6J","name":"","sku":"333","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"FC2T5CZADJZ4C7T4IID7PG5U","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Smile crime","description":"Upon recent cold two happy pass outside. Themselves area will day.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"3PQDQDGYS4ZMLWHGXNDTM3LC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FC2T5CZADJZ4C7T4IID7PG5U","name":"","sku":"392","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"RSXPKBOE6QOWBNP3LH5VZJQR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"If arm","description":"Leg police wonder. Teacher very change party participant experience.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"OJJOVNOPSIA7PQBTMH7P63PZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RSXPKBOE6QOWBNP3LH5VZJQR","name":"","sku":"503","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"UIAOJ37FP5WXE5NH4WS7MRPJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Save focus","description":"House almost growth short election way wife.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"HYV5C6SML274O652EZF7EGYP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UIAOJ37FP5WXE5NH4WS7MRPJ","name":"","sku":"550","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"KW5IDM3ESC56YICXPYNKPSFD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Where generation","description":"Result impact story major yes sell when.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"E3BQNVPK6M7NOFU5J6N2QQ2G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KW5IDM3ESC56YICXPYNKPSFD","name":"Stay","sku":"886","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"Q5DZ4ZVVIIW3HVR76OAUIOPA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KW5IDM3ESC56YICXPYNKPSFD","name":"Their","sku":"886","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"ZUU5K3GBMW3J6PG4IADURALT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Firm floor","description":"Establish send social record itself not. Film ball within affect.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"I7ZILTRUTYNKRLSMAUGMQ4VR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZUU5K3GBMW3J6PG4IADURALT","name":"","sku":"935","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"ELALNFRVC3BTUAINOF3VJBY2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Support somebody","description":"Those his deep of join. Magazine believe determine. Per management again.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"7PB67GEEW2U6UVR3XIVL6USN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ELALNFRVC3BTUAINOF3VJBY2","name":"","sku":"140","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"QINR5H2RGV64W5475HEHIR37","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Range cup","description":"Approach factor give there. New trade catch measure Mrs.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"NXDPIN6B2N6SYJJ365DV5562","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QINR5H2RGV64W5475HEHIR37","name":"","sku":"430","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"JX2ADE4WYOCRLH7D43KX63YF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Court general","description":"Minute bit nearly agree. Focus bar second leader recent.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"Y75R2KG6RMKAR5KDB4USEFNO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JX2ADE4WYOCRLH7D43KX63YF","name":"Natural","sku":"941","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RKVIKVZYC4LYBOGPMMX6GGUC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JX2ADE4WYOCRLH7D43KX63YF","name":"Instead","sku":"941","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"GBDMS5Q5CC7PS62K6NLFP3HY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Explain again","description":"Area speak first bad any sort avoid. Product true knowledge everyone we.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"A5KH5SW637XQGROS3VAM5ZMF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GBDMS5Q5CC7PS62K6NLFP3HY","name":"","sku":"118","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115777} +{"stream":"items","data":{"type":"ITEM","id":"5IG7KGJRQK456U7DD6RLRIRU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Forget for","description":"Later expect watch agreement few. Community certain budget beautiful stage.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"ZNOV77DYNIDM7SQND4C6QUE3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5IG7KGJRQK456U7DD6RLRIRU","name":"","sku":"334","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"GQANVXQBBA3P2L2RGDD2OKWQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Contain against","description":"Trouble president opportunity smile American necessary. Yeah price sport upon.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","variations":[{"type":"ITEM_VARIATION","id":"LPTRJPZ5MZERFQW2MU74LQRX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GQANVXQBBA3P2L2RGDD2OKWQ","name":"Difference","sku":"513","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"WE7JMXQLTDXOOCNBDSUVAGL3","item_option_value_id":"YQOWICTK3COSXY7EFQ6GNBIN"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"GUXY56BXDAEBZLTZKU7M4VML","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GQANVXQBBA3P2L2RGDD2OKWQ","name":"Available","sku":"513","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"WE7JMXQLTDXOOCNBDSUVAGL3","item_option_value_id":"KOOIHNQMHRSAPQN5ZMJUO4SH"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"WE7JMXQLTDXOOCNBDSUVAGL3"}]}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"LGYUBFMQVW7ZQGXQLG6FNJYT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Indeed specific","description":"Husband foreign true wonder simply war firm. Off act indeed cup indeed short.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"NHIYCZTWF5X5FOLDAYGMTB4F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LGYUBFMQVW7ZQGXQLG6FNJYT","name":"","sku":"120","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"G4WJFB7GUXVFVHPA2O77ISGD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Son order","description":"Hot star become town try per bed. Floor business education court go large.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"S56UBZBHGFX5CIS6FSFWPXQM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G4WJFB7GUXVFVHPA2O77ISGD","name":"","sku":"567","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"BG2L5DTLO6K5O5NINUO7UDGH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Magazine fire","description":"Provide window against human. Create last face report glass ball nature always.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"VITLSHSZCPEZYH6SUFXB5BWD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BG2L5DTLO6K5O5NINUO7UDGH","name":"Really","sku":"616","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QBOVNEEEJBIECSGGLAWKIZMG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BG2L5DTLO6K5O5NINUO7UDGH","name":"Perhaps","sku":"616","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":19900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"T7YPVZYZYDLUBPZZXMP4RUVD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"With movement","description":"Sport decision where. Concern almost benefit.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"7CUHHFDBKFVQBIJENXLBEEQB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T7YPVZYZYDLUBPZZXMP4RUVD","name":"","sku":"708","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"CSKTSHA5FJ5GRQFRYNFPZCVR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Religious your","description":"Should hour charge management support. Back too series affect spend theory.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"DO5NU3AMSZ22PJX7QLL7EFXR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CSKTSHA5FJ5GRQFRYNFPZCVR","name":"Take","sku":"806","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LXTXHXRCNIESZGQRVRNCWCP4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CSKTSHA5FJ5GRQFRYNFPZCVR","name":"In","sku":"806","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"BU73PG2CDTVIJTXNZVVAY3BR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Continue property","description":"Instead game letter toward available policy. Candidate leave light office.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"QAUHCV627LNUWXQ65XQS6SFA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BU73PG2CDTVIJTXNZVVAY3BR","name":"","sku":"294","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"MK522XWS5C7FILBK3EMBT4NX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Partner region","description":"Guy respond good responsibility music individual into.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"53CY7QWI6AQPLYBLV6WI4WZV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MK522XWS5C7FILBK3EMBT4NX","name":"Firm","sku":"741","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PXTMSAYP54RZJIKN25Y5N7TP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MK522XWS5C7FILBK3EMBT4NX","name":"Total","sku":"741","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"HQIRTLI5W2QTIIRKXX5LZQQ5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"That above","description":"Within natural year available sell suffer.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"WIGVGX6LPTTISTGXJSR2QKMS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HQIRTLI5W2QTIIRKXX5LZQQ5","name":"Whether","sku":"906","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6MZDKB2FPPAGRFY7GV4AXPR3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HQIRTLI5W2QTIIRKXX5LZQQ5","name":"Miss","sku":"906","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115778} +{"stream":"items","data":{"type":"ITEM","id":"7O3GOUM7CEE7ZCUIOL5XGWKQ","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Another wife","description":"Field around man successful four will provide. Recognize pay decade huge.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"QKSEBOCWBDGZJY3AGZKBQV2I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7O3GOUM7CEE7ZCUIOL5XGWKQ","name":"","sku":"1050","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"3X2WGN6THSHBKNDJBCYQVIVL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Crime structure","description":"Customer during poor travel. Difference water while western hit young quickly.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"XAYPSZQGSVG3H23XQNUAO3A5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3X2WGN6THSHBKNDJBCYQVIVL","name":"","sku":"638","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"LNR7ZHNUU6INXE3PGKVEKJBE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Exist sometimes","description":"Time me artist yeah long. Miss research hit someone quality paper move.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"OZW3LQS352WHW7HS33SAQFRV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LNR7ZHNUU6INXE3PGKVEKJBE","name":"","sku":"239","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"O5DLI2VAJKENOQUSVUCXPTPR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Condition receive","description":"Give agent word site. Recently hope just artist.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"2DEIXVLVBF56FQDRCHV4APZY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O5DLI2VAJKENOQUSVUCXPTPR","name":"Sometimes","sku":"466","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"UKBQ7NP65CDHUVD4IB5WT46F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O5DLI2VAJKENOQUSVUCXPTPR","name":"Process","sku":"466","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":25400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"E7CPVO7BOM732HPWEG2WHTPQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Character address","description":"Industry well quickly window fire.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"UZB5P4PXKVKVK2ZYDOXV7ZNK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E7CPVO7BOM732HPWEG2WHTPQ","name":"","sku":"598","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":30000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"R6KWVNQBTXMH2QRWD7DS52CQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Attorney hold","description":"Picture rock leg everyone expert ground man.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"AT55ZLXJW4EJH3GQYITKXO5T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"R6KWVNQBTXMH2QRWD7DS52CQ","name":"","sku":"827","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"J6IPBUDFCBLA5C5UHUDUMCOR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Here win","description":"Away hotel western bar daughter speech behavior.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"RR2W474237M6LVGHZUZEKM44","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"J6IPBUDFCBLA5C5UHUDUMCOR","name":"","sku":"445","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"WVRMDSC6CMECDOKR7BNKVC4I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Involve century","description":"Tough consumer network perform him actually. Stop use blood my suffer into.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"C2YOYQLOEKQY7YBCMAEUPCWF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WVRMDSC6CMECDOKR7BNKVC4I","name":"Give","sku":"561","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QR64KKMVJGXZTKC4LL4XGIS6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WVRMDSC6CMECDOKR7BNKVC4I","name":"Boy","sku":"561","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"QZR3KMQS5DT7LE6HXXYLOSAB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Test politics","description":"Can light approach organization respond case. Wait manager local.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"KAF2DZM4253RW2R4LVJIGXYU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QZR3KMQS5DT7LE6HXXYLOSAB","name":"","sku":"688","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"BBRU2JP6MILALOC7ADSYGF2U","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Spring physical","description":"None trial senior book now middle yet. At Mr practice through since force save.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"N25MUQSAGGC2TPXF65WMALFR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BBRU2JP6MILALOC7ADSYGF2U","name":"","sku":"879","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115779} +{"stream":"items","data":{"type":"ITEM","id":"TEUWXCX52ZD4FOSUT3UZVEKA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Interest go","description":"City mission bill term suffer where. Either modern season life.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"IPR5PUDS2WP3ALJEWVAISCWC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TEUWXCX52ZD4FOSUT3UZVEKA","name":"","sku":"259","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"TH7JZ3T5XA6QSA52BT4ITRWG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Response too","description":"Writer control though culture dinner. Expect deep expect health cell.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"TBMHRI4BCGP6TTP6VH27GUBC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TH7JZ3T5XA6QSA52BT4ITRWG","name":"","sku":"357","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"5VAJX4JGU5JUVFW5VC5CQHAG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Race color","description":"First believe party build most six stuff discussion. Open another moment grow.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"Y5ZDX76FZCZGB66HUU5BLWR7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5VAJX4JGU5JUVFW5VC5CQHAG","name":"","sku":"703","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"Y6NMV24C34C4GISOY6LZ523E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Role herself","description":"Hair series give nothing during face. Field strong rise rule mouth give.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"BNI7WKM4QZCS273GXP3BCISN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y6NMV24C34C4GISOY6LZ523E","name":"","sku":"842","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"IGVHBHNBUO4MXCE2Z7Q36Z7H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Face nature","description":"Foreign Mrs grow. Including adult success claim often tonight.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"MNVH2CA2CCVB6WOWIZZ3XU6P","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IGVHBHNBUO4MXCE2Z7Q36Z7H","name":"After","sku":"371","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"3IOBCR65I3RJTADFIOOOZHBG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IGVHBHNBUO4MXCE2Z7Q36Z7H","name":"Since","sku":"371","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"HEFB23OQ47XCIDE22XYPCHOM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Everybody yeah","description":"Quality according generation. Experience rule several type resource.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"RJDMIX6QIMU62UQ5OE42IUGJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HEFB23OQ47XCIDE22XYPCHOM","name":"Everyone","sku":"391","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WMAR3DPDUPNUGC2B4VAZZXOD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HEFB23OQ47XCIDE22XYPCHOM","name":"Option","sku":"391","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"NWYXXHXQLK7MQLZYG22SU5WU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Development account","description":"Suddenly knowledge none key until meeting like.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"C2WLMAJDSMUXCKGPWIQ5DZ55","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NWYXXHXQLK7MQLZYG22SU5WU","name":"One","sku":"396","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FECMCJCZXRUHJHTRL3NQFO36","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NWYXXHXQLK7MQLZYG22SU5WU","name":"President","sku":"396","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"IDRQKPVJSSLDYS3ABJOPX2QX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Cover affect","description":"Miss watch thought decade person.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"VEGRZXQRUSX2NGD7GKOUTIYA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IDRQKPVJSSLDYS3ABJOPX2QX","name":"","sku":"412","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"UQEKPPPY356FCMPXMC6JU2I5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Health drop","description":"Might their man during receive affect.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"PJF2F6CAXLYBCTSKHAY2HXXW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UQEKPPPY356FCMPXMC6JU2I5","name":"Congress","sku":"626","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IZCPBWTUU2LC656O5KX4OP7I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UQEKPPPY356FCMPXMC6JU2I5","name":"Involve","sku":"626","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"OFNIFAB2BIOEACE7UZ2XGLZL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Eight perhaps","description":"Discover cold mean address big little.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"ZWTW43JY7LKWDDOI32QOQVUO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OFNIFAB2BIOEACE7UZ2XGLZL","name":"","sku":"887","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"YEGAR3PPKEWDNA6VCF2JD3IV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Help rule","description":"Nor perhaps behind start firm. Audience very win general per human red.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"NA3YZF24W66H4CCFOKKS7DFK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YEGAR3PPKEWDNA6VCF2JD3IV","name":"","sku":"143","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115780} +{"stream":"items","data":{"type":"ITEM","id":"CFO2LFH3BD7UBJFTE25MLPGQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Challenge guess","description":"Quality far age address short. Visit quite huge. How per card friend.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"GBGSTDXTXH4WZMI6TMFXROFL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CFO2LFH3BD7UBJFTE25MLPGQ","name":"","sku":"839","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"2MGT5GZWDPXEQ5UK4MH25PCB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thousand once","description":"He least seven political various. Continue add in.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"IGUNRN5YHYR7QIWBIJRSRLSP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2MGT5GZWDPXEQ5UK4MH25PCB","name":"","sku":"452","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"ZKVPRHKHHOVHEY4G3YXLTJAB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Truth free","description":"Apply common church. Ground ground down brother hit research yeah help.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"PJYIMUD526SC77I5K7LT46ZD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZKVPRHKHHOVHEY4G3YXLTJAB","name":"Husband","sku":"731","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"XZ6D6EBOG25QAR74UG2AUTOZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZKVPRHKHHOVHEY4G3YXLTJAB","name":"Join","sku":"731","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":18300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"GMYVUQD4TPXFESVJ2ZZQMWNH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Perform reflect","description":"Watch cause vote their central prevent. About because customer important.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"MAQT3Q3Z7QR65WAYS6CLTU2Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GMYVUQD4TPXFESVJ2ZZQMWNH","name":"","sku":"733","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"2VXK4PXHNYVRXSXKUDQBN7B2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Order director","description":"Age medical keep idea other. Mr no purpose lawyer reveal economy.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"VERCU4HXSPIL6MZK3AS4M24L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2VXK4PXHNYVRXSXKUDQBN7B2","name":"","sku":"829","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"YTJK7WAUCEDRATC3YYSFKA7H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Never capital","description":"Later daughter side standard around land democratic.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"S42JOTVVBQMZPAZGOEHTKSUN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YTJK7WAUCEDRATC3YYSFKA7H","name":"","sku":"990","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"SHLQDQYTVTMURFFDSH66MNW6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Follow science","description":"Game whole task politics consider across service arm.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"I4I2PPZTO4W6BYWHGEE7UD2P","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SHLQDQYTVTMURFFDSH66MNW6","name":"","sku":"1008","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"VMCS7QETBOSMELHXWGARHOW2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Per picture","description":"Culture language such conference. Born drop if major need throw become.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"LMDNNNMHSRQTLMTWCFA7GX2E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VMCS7QETBOSMELHXWGARHOW2","name":"","sku":"250","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"RGPXHL435FKBCNHRHBJ4VT5W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wind crime","description":"Available notice father culture.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"DLFQNK2N7BXIA55VEIL6JHUA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RGPXHL435FKBCNHRHBJ4VT5W","name":"","sku":"843","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"U2J7XSQUGAGYEN7HGCPJMAE6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Use choose","description":"Same three case alone since. Time stand southern other agent.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"HXHQ6YSCA3ELAYLJVXTNPYIL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U2J7XSQUGAGYEN7HGCPJMAE6","name":"","sku":"355","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"SGNCXKNHWQHN3NAMTYG7SH65","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Under leg","description":"Music structure light occur itself politics professional manage.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"QQPZAGLBRIJLJSTLZNTFG2R7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SGNCXKNHWQHN3NAMTYG7SH65","name":"In","sku":"506","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"Z5TRLQ5AFVOOJM7WNUOHDGFN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SGNCXKNHWQHN3NAMTYG7SH65","name":"Place","sku":"506","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115781} +{"stream":"items","data":{"type":"ITEM","id":"7YNODCA24RDIV3BZKNGEOZGM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Something everyone","description":"Deal role stuff much. Style choose marriage. Around response remain vote.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"YYLKDEXXRUSCOKM3VUDAEON7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7YNODCA24RDIV3BZKNGEOZGM","name":"Protect","sku":"1065","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":15700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"DJB2BU564IOH26P7SD2ZV5G4","item_option_value_id":"VH63JOXOFYJZSEZAGINV2G3C"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NANGCN4IXNJ3VQKMU3OVM4GL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7YNODCA24RDIV3BZKNGEOZGM","name":"Political","sku":"1065","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"DJB2BU564IOH26P7SD2ZV5G4","item_option_value_id":"5PEXW7N4ZQNZAZJGFGWZQUD6"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"DJB2BU564IOH26P7SD2ZV5G4"}]}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"2WZDAZH3PP4QT6FLGBVBECDZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Throughout card","description":"Value police surface per least trouble. Four modern book public stuff become.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"6IREZJO5HSRG4WCBBRQWTOPX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2WZDAZH3PP4QT6FLGBVBECDZ","name":"","sku":"510","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"2FDE6L4XN3DYNNJB7SQZL5XP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bit myself","description":"Only pass physical explain available. Always design skin social affect.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"MEPNWVOJWMMYUCTFXGUTLL3B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2FDE6L4XN3DYNNJB7SQZL5XP","name":"","sku":"730","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"XFFA4PBE4MFDQJGDOJ4EBOM3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mother serious","description":"Phone form rest claim baby least factor teacher.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"N3UCZTQFTNHMDTCBUYHQGDLS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XFFA4PBE4MFDQJGDOJ4EBOM3","name":"Different","sku":"536","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DA2EMJHKPSPG6QUSJWPREUKL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XFFA4PBE4MFDQJGDOJ4EBOM3","name":"Cover","sku":"536","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"65L5YMHTDX6WVXTMANJCVRQW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Team anything","description":"Admit hit case each cell including cold. Message have popular final.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"WINEYGOJ2ZAVVBHXAW7ATN4G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"65L5YMHTDX6WVXTMANJCVRQW","name":"","sku":"970","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"GZDTVXBZLWMFUT5IDLXW5QNA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Number financial","description":"Threat six series against. Heart him admit ten. Lead they same law father.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"5J4DUOREAHBJCFVEKNSRKZVL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GZDTVXBZLWMFUT5IDLXW5QNA","name":"","sku":"1069","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"2ZZ3K7JRGMZPLYEPXVLRFTJ7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Doctor order","description":"Impact analysis discussion force. Road our condition report pressure benefit.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"AOEKPUU5BEK4ZHD736W5ETKG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ZZ3K7JRGMZPLYEPXVLRFTJ7","name":"A","sku":"1026","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IO5UD7B4RF3MDECQD5BNRQYK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ZZ3K7JRGMZPLYEPXVLRFTJ7","name":"Reality","sku":"1026","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":25400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"4J5Y76OFIXTFKJ5DA5LD3G42","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Second trial","description":"Put go decision improve decade. Store establish meet like prevent drug member.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"PAS43Z6MBJMZBPUPKGE3INW3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4J5Y76OFIXTFKJ5DA5LD3G42","name":"","sku":"307","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"YNCV7EILB5IEHG664J3YQIEC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Arrive once","description":"Rock book decision. Eight particularly light brother decade.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"5AIQJAKX7Y7TGWA3JOT5DMJ7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YNCV7EILB5IEHG664J3YQIEC","name":"Government","sku":"361","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"MHXX7JVX4PS2LX6VELVDGJFT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YNCV7EILB5IEHG664J3YQIEC","name":"Argue","sku":"361","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115782} +{"stream":"items","data":{"type":"ITEM","id":"WB4YKR7J66LZBZN3XDHKA6KJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Happy save","description":"Include join director relate research analysis office choose.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"M5ELVWK7X2ICDMLJCKSTCIOQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WB4YKR7J66LZBZN3XDHKA6KJ","name":"Evidence","sku":"376","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PIPNXR2IYFJODL5DDGURCQVS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WB4YKR7J66LZBZN3XDHKA6KJ","name":"Really","sku":"376","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"M5RG5UQPACBTZZRASTUDX5QX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Choice time","description":"Like at figure grow family. Contain police perform sure human.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"2Q7FUY6EIDBRYOHGMK3FU6XW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"M5RG5UQPACBTZZRASTUDX5QX","name":"","sku":"485","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"N7V5YCSUXDT4564HXQG4CM7T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Chair both","description":"Attorney administration whatever somebody teacher much much work.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"BPWPZAHXHXWVUE6IMP3HGN6S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N7V5YCSUXDT4564HXQG4CM7T","name":"","sku":"742","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"ZVHWTYMQIHJOSBDJJJ6JSXGC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Game walk","description":"Game product wonder expert about individual skin beat. Sound during physical.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"DKWBEXUVRRB62DRMMNZYTM3R","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZVHWTYMQIHJOSBDJJJ6JSXGC","name":"","sku":"975","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"AX45PRRED5ZSQUNM73C4Z5IT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Future health","description":"Cultural own different after contain. Teach really contain step.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"HN5I6L5YJYFLQQLA2UC5OMMK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AX45PRRED5ZSQUNM73C4Z5IT","name":"","sku":"1012","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"KQKYUJL6IFYBPRSWESYXNGX7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Doctor give","description":"Rate sport tonight exactly town. Include day seat. Many upon buy gun society.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"TCPB5GYAAEWHAKGPPOUT2YHR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KQKYUJL6IFYBPRSWESYXNGX7","name":"","sku":"200","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"MUW4YGJ24M3JT4D6ZLW7C2WA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Forward than","description":"Size from after mother media low no. Two produce gun same.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"667PF3FCK5I2U6B6U3XWSGQ7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MUW4YGJ24M3JT4D6ZLW7C2WA","name":"","sku":"669","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"R2HW6TSZMJVGABHX7C5QFW2N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Once great","description":"Religious go study keep. Interest its question popular each loss all.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"VMLVS35HL42TG7LHMMCZUBRW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"R2HW6TSZMJVGABHX7C5QFW2N","name":"Standard","sku":"776","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"P2MPLWNLLPVVG2UOJQJURGTX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"R2HW6TSZMJVGABHX7C5QFW2N","name":"Day","sku":"776","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":19700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"TZFQKOGDVEQPPYWATVKXWVVB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Than lot","description":"Buy money watch tough here let again.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"U4KYUHRIXYJXB45ETVC2XXEG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TZFQKOGDVEQPPYWATVKXWVVB","name":"","sku":"422","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"TPSHXTLJ22N2PX6XTBG4Q2V3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Computer bill","description":"Often into participant body so. Reveal market since recent few.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"FX7JPQVN32T65PRFALD7W2BD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TPSHXTLJ22N2PX6XTBG4Q2V3","name":"","sku":"608","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"AOUJ6RFW2ORVMT2CZMALRUIH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Low on","description":"Remember any goal. Region have civil window sister human.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"6Q3FKWSPC5MZARSLK42GFTLH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AOUJ6RFW2ORVMT2CZMALRUIH","name":"Politics","sku":"657","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"YJZP3IJA4SJ23LXHOEKZMYD4","item_option_value_id":"XXRWSR3WMLFRKUEQQHI7Z2HK"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"76LTBCDLVXPSTWKHTJ36BE3V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AOUJ6RFW2ORVMT2CZMALRUIH","name":"Know","sku":"657","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"YJZP3IJA4SJ23LXHOEKZMYD4","item_option_value_id":"GX7SX27S6JUBC4CIIJWJ5DQA"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"YJZP3IJA4SJ23LXHOEKZMYD4"}]}},"emitted_at":1668290115783} +{"stream":"items","data":{"type":"ITEM","id":"TKLBKH3JFAHXTGRYPY3SU6IF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Boy prepare","description":"Water particular son image walk rather at.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"SUSCXM33MLDC4JLBI5SIG6VI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TKLBKH3JFAHXTGRYPY3SU6IF","name":"","sku":"284","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"WXA63Q2AU4R7BORBWQ64XPPS","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Across to","description":"Training matter today current similar institution.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"XETLH6XC3VSGSRXQJKP2QPKH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WXA63Q2AU4R7BORBWQ64XPPS","name":"Price","sku":"386","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"V7IQESYJPJT4OYLRYFYR5JRP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WXA63Q2AU4R7BORBWQ64XPPS","name":"Chair","sku":"386","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"JRE24GGS73HUBLCB6YBROHGA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Suddenly least","description":"Western expect speech agreement several glass.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"IQSOGLAKCDSAN65LGJUNA2HD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JRE24GGS73HUBLCB6YBROHGA","name":"","sku":"538","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"CDJJM3Q4C3EYXLJ3RNCQPVGP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Meet again","description":"Herself medical fight training new. Protect listen trip design often.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"O3DX7JYKETJACFGYXF24SJGC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CDJJM3Q4C3EYXLJ3RNCQPVGP","name":"","sku":"650","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"HJFM6M4YMA74BJEMKGROAETW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Your stop","description":"Include until subject goal successful.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","variations":[{"type":"ITEM_VARIATION","id":"7VDHXO7HA5BMUUK6YOFZ5ASH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HJFM6M4YMA74BJEMKGROAETW","name":"","sku":"800","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"XYZIR5MOCP65JEB76BZKSM2W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Clearly figure","description":"Election remember ever focus bit.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"6SUTKPUPIAMBJOELKBID7KTW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XYZIR5MOCP65JEB76BZKSM2W","name":"","sku":"875","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"RWTKTGOZZUTZIQQUZZ6XVWRN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sign check","description":"Law along perhaps five modern front score week.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"3I72XTUG2PVLEDPZGVTTSO4O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RWTKTGOZZUTZIQQUZZ6XVWRN","name":"","sku":"528","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"N7P5WTUDE2CW6GKPK6E3DYHI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Huge share","description":"Care clear possible institution standard structure security.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"EZASNSQ6LUXSXWT7WRKM7A7T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N7P5WTUDE2CW6GKPK6E3DYHI","name":"Building","sku":"705","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"NFYPLJIFOJ56WSCP6INYDMDD","item_option_value_id":"IPLLK7ICD4NAGBNERNMCZ5YX"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KPZDJL6TMG3YWD6VJUE65NYE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N7P5WTUDE2CW6GKPK6E3DYHI","name":"Where","sku":"705","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"NFYPLJIFOJ56WSCP6INYDMDD","item_option_value_id":"43VIS66SQIENIJ4OWJXGAZ3G"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"NFYPLJIFOJ56WSCP6INYDMDD"}]}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"5X3AI7Q3ZVKYLJDOYFMC2P4Z","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Part finally","description":"Police here song discuss. Grow law type very. Arrive herself hot.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"W7Y3RXWLDVAIRLFBY7MMNWX7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5X3AI7Q3ZVKYLJDOYFMC2P4Z","name":"Skill","sku":"769","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"IYIKLMUHZQO7ZTEXTNQARZ44","item_option_value_id":"NCDRYOTYELEIARXX45UQD5YT"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LLUDIM2KKZQK47CDQWJPYAEO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5X3AI7Q3ZVKYLJDOYFMC2P4Z","name":"Anything","sku":"769","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"IYIKLMUHZQO7ZTEXTNQARZ44","item_option_value_id":"CYZGYVCA3IWMWLCK6DUZXKSC"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"IYIKLMUHZQO7ZTEXTNQARZ44"}]}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"DTKOQVDJQ5B7CJWMQJVNJMRE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Interesting common","description":"Early start technology cell imagine.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"XFTNKOLXCIH24Z53JSUKJKKJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DTKOQVDJQ5B7CJWMQJVNJMRE","name":"","sku":"939","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115784} +{"stream":"items","data":{"type":"ITEM","id":"6VB75CRQC4GANQZ5PDDLILHV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Major part","description":"Food along talk include scene class conference.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"M4RFZ2XAL5DDEYP7LK7V56QP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6VB75CRQC4GANQZ5PDDLILHV","name":"","sku":"963","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"EFDGPHTLDBSJDTNKM4CD3KJL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bit positive","description":"Situation and offer everything human. Break she firm part culture kitchen.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"GXP4DKMD75THK5MXA3J5VMQM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EFDGPHTLDBSJDTNKM4CD3KJL","name":"","sku":"335","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"PJORKCFEW2XU45NJTGRRJCPE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Security subject","description":"Far here street hear health upon study.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"DCCOK7ETQIYP4IWQC5RJERWP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PJORKCFEW2XU45NJTGRRJCPE","name":"","sku":"549","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"4J3VQCGCKDSGZNKFGM5FP2UK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Young research","description":"Make either now. Level evening real. Large pressure include firm.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"HBWAVYJ6YAIRCTCIQMNKZHME","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4J3VQCGCKDSGZNKFGM5FP2UK","name":"Really","sku":"297","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RDFGOVJZOPIQIOUNYFVQETCW","item_option_value_id":"EUVMSINI7E3Y5NHRCA6S2H5G"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QYYWM542I53CFXAC76LHL5GZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4J3VQCGCKDSGZNKFGM5FP2UK","name":"Trial","sku":"297","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RDFGOVJZOPIQIOUNYFVQETCW","item_option_value_id":"RDFTBD75RGW6OIAINWEET4VB"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"RDFGOVJZOPIQIOUNYFVQETCW"}]}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"US3EYFMTPSXWZZESCWW5WLQC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Surface three","description":"Approach help authority between wear age knowledge.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"OXKSK2QCO2TKDCRVK7HBBDYP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"US3EYFMTPSXWZZESCWW5WLQC","name":"","sku":"653","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"OEWYFCWFGKGMIZDYJJ65OLH6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mention dream","description":"Positive develop reflect others make oil. In police career. Son look cell.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"ATDPTBELHKNUDSXRNDVBXSAB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OEWYFCWFGKGMIZDYJJ65OLH6","name":"","sku":"1007","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"K4BW5HWQ3S3WFP2JL7GNHRTY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Never painting","description":"Reflect material reduce model more baby performance heavy.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"O5B4ICWHTE2US7ZZEIM5HHLX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"K4BW5HWQ3S3WFP2JL7GNHRTY","name":"Family","sku":"201","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"XGE247DJUSFRJJZMGJF2Q6I3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"K4BW5HWQ3S3WFP2JL7GNHRTY","name":"Worry","sku":"201","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"MV6S22FPSYLKM5YPF6X37PNM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Situation value","description":"Bad for walk have. Thought democratic society husband experience sister the.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"FLVAXVSQ4CUOX73GLVA44LPA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MV6S22FPSYLKM5YPF6X37PNM","name":"Catch","sku":"633","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":7600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OXAIIODYST7HKF7JLVCHAL4Z","item_option_value_id":"F7AKBM3UHVWUK5LKD3QVY5VN"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IBJZMQF2DUWNPQOI2TB3MSZQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MV6S22FPSYLKM5YPF6X37PNM","name":"Community","sku":"633","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OXAIIODYST7HKF7JLVCHAL4Z","item_option_value_id":"THKEWTCUKWBKY7G6SS5B53GZ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"OXAIIODYST7HKF7JLVCHAL4Z"}]}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"G6IKDML4OJGV3IOQLJ43MYQR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Son beat","description":"Remain focus time heavy born many.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"BO54AEZOSHQI7NAQ5PEHABJO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G6IKDML4OJGV3IOQLJ43MYQR","name":"","sku":"712","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"SSTMWT3NIMLGOMLP3HG6L7NL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hair experience","description":"Build government hundred recent this.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"FMKPCDZF2OP4NESCAJAY6QVR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SSTMWT3NIMLGOMLP3HG6L7NL","name":"","sku":"932","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115785} +{"stream":"items","data":{"type":"ITEM","id":"OHOJHPFK4XJJIXTDDUFOXVO4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Meeting issue","description":"Name character per. Relate sense type whom.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"QOTS3H2EAWAAKJSKLABLFBAX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OHOJHPFK4XJJIXTDDUFOXVO4","name":"They","sku":"217","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":2500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"N7UAWRX6DEMRFV6GFJWKTMQA","item_option_value_id":"PW26QWSMEYLOICIJ2PAWO5LU"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SWNS6OLPORDQFLZVLHH7NID3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OHOJHPFK4XJJIXTDDUFOXVO4","name":"Theory","sku":"217","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"N7UAWRX6DEMRFV6GFJWKTMQA","item_option_value_id":"WYGCBQAWFGVEIOWX3I2YXU2A"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"N7UAWRX6DEMRFV6GFJWKTMQA"}]}},"emitted_at":1668290115786} +{"stream":"items","data":{"type":"ITEM","id":"EC6KURIZJTI6FWEYUMC4RBFQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ground section","description":"Interest chair interview wear tax once. Could keep front source.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"E2JXP3I4XT2ZSB6HSCNDKX22","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EC6KURIZJTI6FWEYUMC4RBFQ","name":"High","sku":"337","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":12500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZYGG4EO32XSDJ6LE4I26OLAO","item_option_value_id":"AMC7C2GCZS3QAKHC7Q3JLJBX"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WOA6UKFNNALJDUOJKJFWFEC4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EC6KURIZJTI6FWEYUMC4RBFQ","name":"A","sku":"337","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZYGG4EO32XSDJ6LE4I26OLAO","item_option_value_id":"U66RBL6HYCU7CBGIIPF2KYFU"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"ZYGG4EO32XSDJ6LE4I26OLAO"}]}},"emitted_at":1668290115786} +{"stream":"items","data":{"type":"ITEM","id":"6QEVAHCUSTGDDW76LTF5GL2V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Live international","description":"Enough design back artist moment after remain.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"SI5T3WTUU7QNQRPIVPX6DF46","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6QEVAHCUSTGDDW76LTF5GL2V","name":"Campaign","sku":"593","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":9300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"AAWVVNNRMIQEL3EMVPFQWLNU","item_option_value_id":"VW2GXYXDV3AUK2B3P5XJ6U7H"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"57KCNHUJCAYAR7OSWOQVQGRB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6QEVAHCUSTGDDW76LTF5GL2V","name":"Product","sku":"593","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"AAWVVNNRMIQEL3EMVPFQWLNU","item_option_value_id":"2W7SXC4JE5ECYDZQTKUNKHS4"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"AAWVVNNRMIQEL3EMVPFQWLNU"}]}},"emitted_at":1668290115786} +{"stream":"items","data":{"type":"ITEM","id":"PX7XBNWTVZDIFDFCN7KYZN7K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"White force","description":"Food trial focus approach read wife.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"CXVFHEOZGO2RRL5WRB3GFIXE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PX7XBNWTVZDIFDFCN7KYZN7K","name":"","sku":"668","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115786} +{"stream":"items","data":{"type":"ITEM","id":"D7NGHCNPNS34UH7GUOGU5DUE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Responsibility really","description":"Place clear late for leave company rich. Including stuff stage six.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"SCTDJJNOACLREJGXCQVJUUYO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"D7NGHCNPNS34UH7GUOGU5DUE","name":"","sku":"854","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115786} +{"stream":"items","data":{"type":"ITEM","id":"YVUA4SWHGUJ7AN2FQSZTJ2PO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Become prepare","description":"Clear federal area leader age protect deep.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"O7G6BFCA7I65LLEPXWNOMPQZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YVUA4SWHGUJ7AN2FQSZTJ2PO","name":"","sku":"908","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115786} +{"stream":"items","data":{"type":"ITEM","id":"IADC4ZIAFMB6A4ET55TTDTB7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whatever into","description":"Artist approach or speak give stuff new.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"GURSAM6OSGC2FOVOGSNRTIOI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IADC4ZIAFMB6A4ET55TTDTB7","name":"Staff","sku":"986","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LR3VSG2TBKK42WHIEWM5BSES","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IADC4ZIAFMB6A4ET55TTDTB7","name":"Than","sku":"986","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115786} +{"stream":"items","data":{"type":"ITEM","id":"OB7RZ7HKSLK7IO2YDEC53EJD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Together interesting","description":"Painting standard maintain activity. Those kitchen example couple.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"QLHUNAK2HOFMCEAV7NNKT7BE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OB7RZ7HKSLK7IO2YDEC53EJD","name":"","sku":"642","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"ODGYJDQJMQVACP2PTE2BYXJS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Pm suddenly","description":"Director nothing according movie administration guy.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"M4XAF3AYW3AAK4QWV2QTUQRK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ODGYJDQJMQVACP2PTE2BYXJS","name":"","sku":"614","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"AY5TACEECMFE77FHSYAG4WCE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wife entire","description":"Drug local bad law likely address. Do security hour every home require heart.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"TPISCNII2L5PK2YWSBYXRQ7L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AY5TACEECMFE77FHSYAG4WCE","name":"Card","sku":"656","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NUMOE42NWUYL7P5JRDEYTZBI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AY5TACEECMFE77FHSYAG4WCE","name":"Far","sku":"656","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"7KMB4BDPI6TYIZ73JONBLNLZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Order none","description":"Theory human drop difficult century discussion. Eight worry worry.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"WYDL76OE266X66HJKVX5LN5V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7KMB4BDPI6TYIZ73JONBLNLZ","name":"","sku":"415","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"BXAHMQJ35PDDVJ4IPCUE24MO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Stand you","description":"Of southern employee Congress party. Certainly mission nearly source west.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"BVSU5EPXE5BOK26HTPGXFVSR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BXAHMQJ35PDDVJ4IPCUE24MO","name":"Against","sku":"696","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"T7HSR4OT3TKVJOBW3QTGW3TA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BXAHMQJ35PDDVJ4IPCUE24MO","name":"Young","sku":"696","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":12600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"UZKXN3GKGEDNEPXJC6CPPM4J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Join health","description":"Attorney for plan since. After billion hit policy area star.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"KMTLL24PITAA3F4PEKKTWUT5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UZKXN3GKGEDNEPXJC6CPPM4J","name":"","sku":"707","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"R3HAS6I6UEEKQKQLTHKTQKMU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Property both","description":"Police factor father middle produce miss. Professional risk food bad.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"6J3GV4SINB7SP72TI5Y726NH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"R3HAS6I6UEEKQKQLTHKTQKMU","name":"","sku":"890","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"XHH2DSNU7YKQ2B7PS6IFO7WH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Follow up","description":"Section situation market sit. Continue mean far.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"CQ2FAYIWNL6U2F5AFHCKYYPW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XHH2DSNU7YKQ2B7PS6IFO7WH","name":"","sku":"979","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"3RDMZJPUGUIIUAVQKK7P5ZT6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"After citizen","description":"Continue too account country fast concern husband character.","category_id":"G254DMXKLHIMCDXBZM6GZSPW","variations":[{"type":"ITEM_VARIATION","id":"TYRL6I2662WCEQ2SPTXK4W4V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3RDMZJPUGUIIUAVQKK7P5ZT6","name":"","sku":"107","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"EQ5GCSJFUFJFO27OHY5WUQQP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Assume drop","description":"Figure use commercial discussion threat close yard.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"RWT4AU356D2EVKE5TKLJGOWE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EQ5GCSJFUFJFO27OHY5WUQQP","name":"","sku":"253","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"HAMZIWUFLJUTK7NB6VW2QGSL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Company hear","description":"Pay work no. So part Democrat western poor they worry.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"TAJIMJUCWJSA6CWDWYSEIZBG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HAMZIWUFLJUTK7NB6VW2QGSL","name":"Industry","sku":"631","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FGOARO2CT4SLXWGB7PRT2LPQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HAMZIWUFLJUTK7NB6VW2QGSL","name":"Deep","sku":"631","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115787} +{"stream":"items","data":{"type":"ITEM","id":"Z437TBVGZZG5NVN2S3J65GJ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Culture strong","description":"Yeah involve that above Congress very. Foot page meet attention.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"GDY57TZITTVX3RQX7XC3FO3U","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z437TBVGZZG5NVN2S3J65GJ6","name":"","sku":"749","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"45EX473RNHLUHVP5AYDIR43W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Get small","description":"Population evidence campaign night simply suggest. Join voice recently later.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"C64X5Y6NEN2SONAMVWSHR6GO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"45EX473RNHLUHVP5AYDIR43W","name":"","sku":"699","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"ZTO7CGAW3NI6U6HADEMRFG6K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Republican much","description":"Exactly still least tonight prevent shake special.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"A3O7CQOJUCETG7W5F5ZKWTBD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZTO7CGAW3NI6U6HADEMRFG6K","name":"","sku":"900","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"73RWGY76PXVJRVSWGUTX2CYC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Add play","description":"Kind kitchen job recent as middle upon forward.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"G7RM2YBZPPO6PMMM2ZJTCSNP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"73RWGY76PXVJRVSWGUTX2CYC","name":"","sku":"205","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"MC4S4BJAEI7C5W5F5VW3NOED","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Foreign glass","description":"Leg attack tough Mr I. Listen record cut reflect enter. Rate field cold recent.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"MYRBRFQYYMOEUFIVBKRBUAYZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MC4S4BJAEI7C5W5F5VW3NOED","name":"","sku":"710","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"L2GUYEJ2Q2LN42JHQPJQ23RV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Nothing force","description":"Some instead week run manager. Condition issue occur sport field which.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","variations":[{"type":"ITEM_VARIATION","id":"MSYWZIRX5RGPB4PG6BBHXSM6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L2GUYEJ2Q2LN42JHQPJQ23RV","name":"","sku":"792","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"ZP7USGIXFXSNENVNK3OIPJO7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Usually may","description":"Very me less music specific. Through commercial success another door class.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"JU7XPRITKQW44CX5RXS6HETB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZP7USGIXFXSNENVNK3OIPJO7","name":"","sku":"724","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"F4OS326J6QO7GCNRADYS2RNV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Although from","description":"Painting each adult free. Mean human hot rate early sister.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"BJRCNFP5JNAT4ZHMYDEITFYY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F4OS326J6QO7GCNRADYS2RNV","name":"","sku":"1060","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"23CPLAOZ52PQLRLKBDCZ7BXY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sure early","description":"Follow civil them power forget about.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"DTZLAR2RKUINQ5WU2SZYI56M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"23CPLAOZ52PQLRLKBDCZ7BXY","name":"","sku":"255","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"JRJQUAGGFU4VMM6PIKSYXVTT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sure off","description":"Here mission body card. Rock food whose person rise.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"XYLRSYPCWYBZFH4OF6HIN5QV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JRJQUAGGFU4VMM6PIKSYXVTT","name":"Find","sku":"291","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"OKXEP5XXCHUYA7XXVHSLXSA2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JRJQUAGGFU4VMM6PIKSYXVTT","name":"Bad","sku":"291","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":19600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"XZCCTIAGUZ4BRYCPGFARAN2I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Avoid health","description":"When family administration market put same. Strategy week degree relate draw.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"3PVMDXEINKQHDXRKM6TEPLRT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XZCCTIAGUZ4BRYCPGFARAN2I","name":"","sku":"344","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115788} +{"stream":"items","data":{"type":"ITEM","id":"G65NFVXGBI55A444SUNOM5HF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Trouble fear","description":"Mention knowledge happen mother decision. Despite air position myself.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"YBFXZVTLQJWEV6QKT4NY6YID","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G65NFVXGBI55A444SUNOM5HF","name":"","sku":"389","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"QNE3MZ6LT3DUZXI6ARPNIKZL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Top down","description":"Peace team over attorney simply easy. When today I cost mouth drop ago.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"JUFVLKYXVBC43VPIJY536SMK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QNE3MZ6LT3DUZXI6ARPNIKZL","name":"","sku":"450","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"VLNEZUR56GTP7PGCK4L57KVZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Offer cup","description":"Government more their indicate fish.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"T4XN7GGOUJADAT6AZT6TZSKS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VLNEZUR56GTP7PGCK4L57KVZ","name":"","sku":"643","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"PRMTHR6ZYKFQXOODUBPEAMFI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Environment attack","description":"Mention military fill against describe. Apply authority skin six anyone letter.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"ITEIHQ3QCBJUA772JME53I6X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PRMTHR6ZYKFQXOODUBPEAMFI","name":"","sku":"714","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"KJSCCMCKZMFQPQ7OXIID4NIK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Late never","description":"Share clear news year left ready thank.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"2QSBJDFGLJ5TO64DN3HNUZG2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KJSCCMCKZMFQPQ7OXIID4NIK","name":"","sku":"762","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"2Z5DOA5RZEPFVSKN4NTVTFZJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Return suggest","description":"Day figure civil particular term season. Available care apply way region.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"CF6CMS6PY3MXCQK2W4EDO2BH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2Z5DOA5RZEPFVSKN4NTVTFZJ","name":"Hospital","sku":"181","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"EBKQJXGPN4IE3SRVT7QX2AZZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2Z5DOA5RZEPFVSKN4NTVTFZJ","name":"Modern","sku":"181","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":21500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"TWDZO34PRJAJMHLOUYBES5J2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Us beat","description":"Reach start bag industry bring discover. Little hot however Mr.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"AKNNKSTHPGGLR4NYW27H6XN5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TWDZO34PRJAJMHLOUYBES5J2","name":"","sku":"184","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"QPHB4AJQAMO2UDSHEYTOHZBP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Determine agency","description":"Of rate kitchen whatever including occur nation tell.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"HYOLQYAJ2ONLU3HK4WYUEI6K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QPHB4AJQAMO2UDSHEYTOHZBP","name":"Forward","sku":"1033","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":6000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"N7UAWRX6DEMRFV6GFJWKTMQA","item_option_value_id":"QOVCYJT3VAU3VFZ3BTYS6CFC"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LXGG7MZOYD2N457CDTJDDYDH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QPHB4AJQAMO2UDSHEYTOHZBP","name":"Agency","sku":"1033","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"N7UAWRX6DEMRFV6GFJWKTMQA","item_option_value_id":"B2BYYSYSTHS6MXMZSLGIECCK"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"N7UAWRX6DEMRFV6GFJWKTMQA"}]}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"RIVF34SNYDESWRJLS7TATZK4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Believe determine","description":"Value smile member manager before year.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"HHND4TEETOULNZ6CCUMQR6HG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RIVF34SNYDESWRJLS7TATZK4","name":"Improve","sku":"331","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TRQBNYE7PH6NYC6MEWN7RXEM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RIVF34SNYDESWRJLS7TATZK4","name":"What","sku":"331","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":12300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"OZCV7JIAYLBRD3MC7Q4APOHW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Certain allow","description":"Difficult Congress final already one. Career energy service physical.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"SALOICDFYF7VZHK4VJQZQX6W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OZCV7JIAYLBRD3MC7Q4APOHW","name":"","sku":"339","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"Z5KGAPMVIUXYXT4WKTGNDDDX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rock figure","description":"Learn to seat energy six line. Plan huge establish add rule go.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"OIA6YS7XPT45ZANIUH3V527L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z5KGAPMVIUXYXT4WKTGNDDDX","name":"","sku":"399","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115789} +{"stream":"items","data":{"type":"ITEM","id":"HZ4DHDBUXQO752AELW46KOPS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"East big","description":"Win key me network. Direction piece check under. Girl do practice senior.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"HVCUPH4UVZ7GQXMUIF3A3AET","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HZ4DHDBUXQO752AELW46KOPS","name":"","sku":"735","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"BGTHSGVCRUMJKT2IFN3ROV7T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Get age","description":"Significant win policy. Movement much source cause peace.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"4JZCPK74IX43FVIKCR3YR4VP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BGTHSGVCRUMJKT2IFN3ROV7T","name":"","sku":"758","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"2OLVRPIWFRILJCAMGOMYTSRD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Build subject","description":"Democratic safe seem right. Person mission close Republican down.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"7GDVDY6GHGADN4HG5JYNRAIL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2OLVRPIWFRILJCAMGOMYTSRD","name":"","sku":"954","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"E4NSAVSW6LLQJIZ3N2LZLMAM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Friend strategy","description":"Sometimes case beautiful look anything event.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"NZ7T3QZT24BFFXYD5XOX7JXT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E4NSAVSW6LLQJIZ3N2LZLMAM","name":"Those","sku":"329","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":20600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"UOKIHHZAOJO4AJGNNARZX7XS","item_option_value_id":"WPHPYLFEBENHB2CUM7MPTYBH"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7FLE37GQTYN4AW4BRDFDK2KW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E4NSAVSW6LLQJIZ3N2LZLMAM","name":"Network","sku":"329","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"UOKIHHZAOJO4AJGNNARZX7XS","item_option_value_id":"HJNIKDKKNZT4R5DC5ZG24TCU"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"UOKIHHZAOJO4AJGNNARZX7XS"}]}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"OLDOQSGGJUJPWK7HKLTQ47K3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Foreign available","description":"Charge sea others boy food attack memory.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"XHXAEGFLQ4Z5MPVL7FYNWDMT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OLDOQSGGJUJPWK7HKLTQ47K3","name":"","sku":"632","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"LCWV74M4LLXDZX5MW62EB6PC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Food better","description":"Perform movement small perhaps as since tough.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"2ENNI7JADPS3G5ZHPINSIJZW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LCWV74M4LLXDZX5MW62EB6PC","name":"Make","sku":"697","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XUFUA7KDQ2XLUCCZFB2TWONR","item_option_value_id":"AFIQAJIRFAO7WVXFUYI7LXRG"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SXUMOMQ7GTNU32623XJCBTT5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LCWV74M4LLXDZX5MW62EB6PC","name":"Now","sku":"697","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XUFUA7KDQ2XLUCCZFB2TWONR","item_option_value_id":"ELPJZQBGLPJGCTDZGCUV34IY"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"XUFUA7KDQ2XLUCCZFB2TWONR"}]}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"GLQGHE4ULI5D4U2CVRYO5HK4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Dog majority","description":"Group figure everyone company. Increase how see.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"Q743EJNFKZ3XHXWGJWZBC7VV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GLQGHE4ULI5D4U2CVRYO5HK4","name":"","sku":"1095","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"6RNX6223FDQETM7MHM3VV3WD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Artist coach","description":"Tax yourself know back. Get look address open establish small growth.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"YPUJ42XAABE263RBMGSB24FA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6RNX6223FDQETM7MHM3VV3WD","name":"Throughout","sku":"221","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"2BIENQ2LR2APU23KOGPBBQPV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6RNX6223FDQETM7MHM3VV3WD","name":"Choose","sku":"221","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"FYO6NI6F7VTHDOCRK6NY345H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Major prevent","description":"Animal perhaps girl range land last. Pull mention gas simple energy.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"TX7LL3JHPTB5PN7VDA73BOHN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FYO6NI6F7VTHDOCRK6NY345H","name":"","sku":"148","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"AR2ECCLJGX7UOJDXXCZ4WJQE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Institution election","description":"Economic guess heavy. Direction perform often team modern while can.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"YCERKA5HPEBUMHDODRMJVDS7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AR2ECCLJGX7UOJDXXCZ4WJQE","name":"Surface","sku":"385","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":11200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RDMPZ6GPP5BMI4GMFICZLFSY","item_option_value_id":"5MJR2YJWYWCARUW2TALPJR4O"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"OGAZMVRDDTH6THBJK52CLRGB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AR2ECCLJGX7UOJDXXCZ4WJQE","name":"Poor","sku":"385","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RDMPZ6GPP5BMI4GMFICZLFSY","item_option_value_id":"SMMEVTEOFD75GHRZQQE4IZ3V"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"RDMPZ6GPP5BMI4GMFICZLFSY"}]}},"emitted_at":1668290115790} +{"stream":"items","data":{"type":"ITEM","id":"7B6VXMSJFK5CDRU6NQU4DU6D","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Road hit","description":"Election example word provide but blue sound spring.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"2EFSY6662SJD763O4GQMKXO3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7B6VXMSJFK5CDRU6NQU4DU6D","name":"","sku":"405","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"LEM5C7GCNSQJRSWA72FY2FY5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Arm many","description":"Development hold such his indicate. Public green down onto.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"RN57JYBVDEC7LG2PVFFNFGMP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LEM5C7GCNSQJRSWA72FY2FY5","name":"National","sku":"406","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VSFA6WA2MZFZ3ZI2U37QDDKF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LEM5C7GCNSQJRSWA72FY2FY5","name":"Speech","sku":"406","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"EOZY2ZBVTSVIQXORFOMIK7FI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Music couple","description":"Condition either culture gas another these word because. Friend art face as.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"3WXXBSLPEN5H5HCIRQJ7L7QX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EOZY2ZBVTSVIQXORFOMIK7FI","name":"Room","sku":"471","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RUJGI5PJ5JJLFNG7INAG5VOZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EOZY2ZBVTSVIQXORFOMIK7FI","name":"Occur","sku":"471","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":23600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"2NLTCJPEESGAKTSCK4M4ONT5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Join fine","description":"Stay risk blue government. Really newspaper worker school understand.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"CG7ZJY5RCLEYAUUIZ5KR46Y6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2NLTCJPEESGAKTSCK4M4ONT5","name":"","sku":"855","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"XR3LBYOQFUM3KGRJXGVPYNF3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Everyone do","description":"Onto clearly money project smile manager two. Be toward know.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"2ABN6DKTDZZEB5RVFF25R4B3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XR3LBYOQFUM3KGRJXGVPYNF3","name":"Black","sku":"876","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NQDHY2KGVS4JWBD2RI4U6IOC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XR3LBYOQFUM3KGRJXGVPYNF3","name":"Health","sku":"876","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":13800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"Q3GR6NQFJFHIFU6M2UNN2UDB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Despite above","description":"Tell job area base big. Economic thought travel option back serious.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"ENCB4Q6ZKQIRXGDHTWG6KLIW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q3GR6NQFJFHIFU6M2UNN2UDB","name":"","sku":"372","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"XGTCVI5C2VQKW22XND2WVBQA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Chance prepare","description":"Once meeting his suffer let. Movie how call remember western our film these.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"RAWERBIIPNOOJSD44O7P2MHN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XGTCVI5C2VQKW22XND2WVBQA","name":"","sku":"775","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"QAVBILDVF2OQH5K7KRHNIS44","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Myself decade","description":"Each artist author speak old article accept. Hear character cut.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"EZN3MV4KOCAAAU7I7LPRTLS5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QAVBILDVF2OQH5K7KRHNIS44","name":"Maintain","sku":"781","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NWNVOVITZZDHZR4I7FMJLA5T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QAVBILDVF2OQH5K7KRHNIS44","name":"Meeting","sku":"781","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":9200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"4SA4LJ25UJBIFOBZDLHD5ZQB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hour structure","description":"Buy oil window meet. Time which blood large plant during.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"UPB7YCKDA3MUWTLAOT2HU6YK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4SA4LJ25UJBIFOBZDLHD5ZQB","name":"","sku":"815","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"37RZSP2VPP7QTXK5ZKHF5BBW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Charge act","description":"But summer day wide. Likely until those happy vote.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"GVMYGN2IVEFZNQGRWDDITYA7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"37RZSP2VPP7QTXK5ZKHF5BBW","name":"","sku":"824","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"UYYJDSZVEJID4NOQYGHZ4TNK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Church interesting","description":"True brother man indeed. Government fear mother ask article house.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"6UGAZ7RPMWPLTVHVK3TFQO6L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UYYJDSZVEJID4NOQYGHZ4TNK","name":"","sku":"488","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115791} +{"stream":"items","data":{"type":"ITEM","id":"FLGAJO37RTLUILQU6VFBNGVK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Firm general","description":"Pick community alone between listen.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"EOW35GSSM4M3OYEZ3QHUEVVT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FLGAJO37RTLUILQU6VFBNGVK","name":"Office","sku":"911","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LVAD3QFFPPUXMV6645IIKHPP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FLGAJO37RTLUILQU6VFBNGVK","name":"You","sku":"911","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"XOT2QITMYRQXH6SWI2J3LIY6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Write feel","description":"Federal approach across other will theory these.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"CQEO3EC52OAQD7HR2XQJ47AC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XOT2QITMYRQXH6SWI2J3LIY6","name":"","sku":"1024","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"OE24VJGUEFY3MWZFLKDUACQY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Operation allow","description":"Go thing candidate over. Reality moment us low. Health our tend part should.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"U5W6SDIQGYQIC7OVWWTA3CH6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OE24VJGUEFY3MWZFLKDUACQY","name":"","sku":"124","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"G5LWMHLZKM5KU7P4B235RTDM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Value i","description":"Arrive wonder treat feeling reflect hard affect.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"VNPXXP2ZD3Z5AOSP7WOIZU4H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G5LWMHLZKM5KU7P4B235RTDM","name":"Such","sku":"409","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"3HURQDCUHAKYTKE3RVPCU2QV","item_option_value_id":"T26FY7MIJUOSIGNADTAZNMAL"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"F3TV4V2DBNU5O6O3B3P3NDI6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G5LWMHLZKM5KU7P4B235RTDM","name":"Drive","sku":"409","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"3HURQDCUHAKYTKE3RVPCU2QV","item_option_value_id":"ZO2KZ5IN4QO6B2VFWAYD67BN"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"3HURQDCUHAKYTKE3RVPCU2QV"}]}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"KM6DKIUTRWDFTF6N726XM6E5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Cold easy","description":"Tonight even big first agreement. Provide push case lose inside not.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"7H23A4PTQJXFQRI3WUYY2Z2C","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KM6DKIUTRWDFTF6N726XM6E5","name":"","sku":"1032","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"3OOBFDXTMCJ44LCGGPCP5J66","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wall room","description":"Never child rest pick.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"QGN2AM3GBE54GSSDAZLX6Z3M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3OOBFDXTMCJ44LCGGPCP5J66","name":"Specific","sku":"225","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":14500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XL6EO4NMLREUHG4V6UCVBPIO","item_option_value_id":"LQEYHE2KABWXNNHLQIDIUXQC"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"J3XMO72SZSXNRXTB4A2NEI6Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3OOBFDXTMCJ44LCGGPCP5J66","name":"Per","sku":"225","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XL6EO4NMLREUHG4V6UCVBPIO","item_option_value_id":"5NTEADPAO5CVEP24AMPJF2HJ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"XL6EO4NMLREUHG4V6UCVBPIO"}]}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"3SOS6QYTS7H6Q6ZI7BW7BY6D","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ok professor","description":"Lose himself husband. Everyone theory administration half quickly one.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"CS6UIQ7CRLSAL323GE67R4TC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3SOS6QYTS7H6Q6ZI7BW7BY6D","name":"","sku":"444","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"ZIFKPTFYNQLEM2A7C4KXTBFS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Share baby","description":"Tree response become many long indeed town. Sing we own family impact American.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"U3AF2HKKCDTGZU3COYONWC2W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZIFKPTFYNQLEM2A7C4KXTBFS","name":"Value","sku":"711","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"V3MZNAGCJLPNTM4KPRODUE3L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZIFKPTFYNQLEM2A7C4KXTBFS","name":"Expect","sku":"711","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"G22QZF6FGE7ITNMKRFTY2URN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Soldier mrs","description":"Door better factor require suffer. Health bank defense help west way own.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"DVLDPMT7P3XL3A5DHS5DUOSB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G22QZF6FGE7ITNMKRFTY2URN","name":"","sku":"898","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"XMFI7ISQ2HYHW3TBRS7TNUXL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Beautiful road","description":"Area far adult difference finish. Where couple almost teacher.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"E4ZLNYJAO5ZQPJB7WI5MXV7F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XMFI7ISQ2HYHW3TBRS7TNUXL","name":"","sku":"984","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115792} +{"stream":"items","data":{"type":"ITEM","id":"UY55DUO333Q5Y5EJS5OHKX2H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Necessary ask","description":"Age open resource education chance night appear.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"LXPG23KA7JOG6ALCIMKH7RPU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UY55DUO333Q5Y5EJS5OHKX2H","name":"Occur","sku":"1031","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":30000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7E54CPIL733BPGHAJR5KYTQY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UY55DUO333Q5Y5EJS5OHKX2H","name":"Whose","sku":"1031","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":22600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"3BZBTAWJE5RJEMHOLXNI4RXN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Catch model","description":"Life ahead end behavior. All usually two down away hundred professional.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"WDZGUT5GI46DRR2EOWQBL5YJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3BZBTAWJE5RJEMHOLXNI4RXN","name":"Data","sku":"489","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":1000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"G3M7HSJQP2W53WBUCB5WMLMQ","item_option_value_id":"Z5M5LPXM7FR7NDN6WZTSKWHF"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BQYRQ3NYTYBKUEBQCTWW6762","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3BZBTAWJE5RJEMHOLXNI4RXN","name":"Free","sku":"489","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"G3M7HSJQP2W53WBUCB5WMLMQ","item_option_value_id":"RKV3NJT7SCQLVYFY3WS64MPU"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"G3M7HSJQP2W53WBUCB5WMLMQ"}]}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"SMBOSIUU6TCNWN7XRQADYB4R","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Time account","description":"Big important theory answer evening.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"C557CL5YJUYANV3ZI7GOH2MS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SMBOSIUU6TCNWN7XRQADYB4R","name":"","sku":"683","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"LSSP3FNJFBSNZRNQQNHBX2WE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"See media","description":"Worker son manager election natural health television.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","variations":[{"type":"ITEM_VARIATION","id":"DVV3LDWQQDXFYCXWVMCFIMVC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LSSP3FNJFBSNZRNQQNHBX2WE","name":"","sku":"799","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"YTPKQKJHALFLYMC4DHZL3DDK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Doctor east","description":"Boy weight left wonder.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"UKA33WZCTTHHNG6A5U2TPB2U","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YTPKQKJHALFLYMC4DHZL3DDK","name":"","sku":"1078","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"YFNJNR2LG2WHLPAFGIT6S3XJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Design whom","description":"Tv surface data each entire base. Field could lead both I relate leave edge.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"RQVJ5WJKBSH3DYUWM6F7P2Y3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YFNJNR2LG2WHLPAFGIT6S3XJ","name":"","sku":"828","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"XDU3SLITU4NL2VJCDJBWAOHY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Include strategy","description":"Establish mission describe law. Role word produce lot better popular.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"KCBDY5OPUGZCHPQA5LAGSXZ7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XDU3SLITU4NL2VJCDJBWAOHY","name":"Continue","sku":"121","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"K6JGZD4JZDR7WM2YWVUXPJJU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XDU3SLITU4NL2VJCDJBWAOHY","name":"Between","sku":"121","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"SUE3OHCSESYRK6W344533C5X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Young southern","description":"Better picture administration nice do artist. Party before source well.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"AXNP3JSK2WGDXGK4OPQIND5N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SUE3OHCSESYRK6W344533C5X","name":"","sku":"508","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"H5V4656GVDUXZRCDDMZ4GNEE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Generation reach","description":"Debate source deal. Site teacher court attorney forget protect ask.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","variations":[{"type":"ITEM_VARIATION","id":"MHIXRU65ZTRMBIOMHU3VKWQM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H5V4656GVDUXZRCDDMZ4GNEE","name":"","sku":"512","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"UW572OZGTKHY4W4V4M23NQN5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Back mrs","description":"Know employee key since although. Property care executive and wrong.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"DPPASSSJR6P4NSGHHF2P42NK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UW572OZGTKHY4W4V4M23NQN5","name":"Last","sku":"689","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":15100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"GUHJVSJJXMKH7XDPTJX3KI4J","item_option_value_id":"XDLF4BXQHYYMKSH7KABTEBGT"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VNI2QYUNX2BAZ5KUH62UT4PZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UW572OZGTKHY4W4V4M23NQN5","name":"Office","sku":"689","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"GUHJVSJJXMKH7XDPTJX3KI4J","item_option_value_id":"UXWVZVQKQLMCRJCT2UORTZ5V"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"GUHJVSJJXMKH7XDPTJX3KI4J"}]}},"emitted_at":1668290115793} +{"stream":"items","data":{"type":"ITEM","id":"AKJARXM2HGU7IDYW4HUQQLRM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Try goal","description":"Next large area majority way reduce whether. Notice smile event responsibility.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"YOEP6ZK4A4VSAQY4QS6QNBNO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AKJARXM2HGU7IDYW4HUQQLRM","name":"","sku":"723","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"4MNN4YCHDGSBULRST6RAKDST","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"His have","description":"Then activity dinner data prepare card. Event necessary person it back next.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"L3MGKEZDH65YCYGJO6KPLC6A","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4MNN4YCHDGSBULRST6RAKDST","name":"Seem","sku":"811","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NRUMJUGJNBEFCSTPLPO4BTA2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4MNN4YCHDGSBULRST6RAKDST","name":"So","sku":"811","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":3700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"PJYFL4YFXYLFJMBML5OHTH3B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Her should","description":"According visit recently party wrong without including. Put real teach power.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"JMFIKKA3EM6OAHYRAWMEM2FG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PJYFL4YFXYLFJMBML5OHTH3B","name":"","sku":"819","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"G5JUXQDBK7JV2LGFMUIHEQA4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Heart son","description":"Lay everybody southern manage. Girl perhaps off memory so establish.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"2HA4JDIQBGW7SWSALZDMLUCO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G5JUXQDBK7JV2LGFMUIHEQA4","name":"","sku":"160","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"S6AOGN5UPO7QIMUPRH6FRG6F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Building finish","description":"Effort forget medical conference rest lot.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"GZMP3ZUR52F7BMXZC36A7JC2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"S6AOGN5UPO7QIMUPRH6FRG6F","name":"","sku":"468","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"ZLYOQGRQLFGCN22KEM7WWUFE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hand democratic","description":"Adult life finally her cut true situation success. Call live green.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"GQ7IBHIM74VPXSF2VNUTSTGJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZLYOQGRQLFGCN22KEM7WWUFE","name":"","sku":"752","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"GGAHYVQZJYPXYVADN4LSHIEI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Pressure forget","description":"Subject down sound country during near do. Radio growth responsibility others.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","variations":[{"type":"ITEM_VARIATION","id":"7BMNGNSTE7VAIU25OWWJMMFI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GGAHYVQZJYPXYVADN4LSHIEI","name":"","sku":"517","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"PEBYVPAYRRUTBIHPNKZILAIP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Enter tell","description":"Game couple science operation great. Yard base teach program gas stop brother.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"S4SNOEAALK2XGENXJMM3YW55","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PEBYVPAYRRUTBIHPNKZILAIP","name":"","sku":"719","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"YW6KGDZTCB3FYJYJMKDHI7EC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Past establish","description":"System someone issue usually voice age style.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"MZOMHXUCIHLVHZDI5WUSTPKY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YW6KGDZTCB3FYJYJMKDHI7EC","name":"","sku":"202","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"SQMHCX6FLSGVISMWOWKDOMF5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Region dream","description":"Wait actually bill individual. Born money customer.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"GJOVJERAGK465XU7KXCANJXU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SQMHCX6FLSGVISMWOWKDOMF5","name":"","sku":"254","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"BIKI3SKPPFZK4CF3RGQX325N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Someone role","description":"Clearly always raise word. Piece explain same.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"RXWO4ENU3IKRQHWC6RHHPFHU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BIKI3SKPPFZK4CF3RGQX325N","name":"Method","sku":"553","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":9300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"63UUXINLTLL2P22WXJOIZCTB","item_option_value_id":"FUDIYMIATNYDX5GMDBFAREKI"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"MSPND4CHMNWHHEJBH35O4TJO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BIKI3SKPPFZK4CF3RGQX325N","name":"Record","sku":"553","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"63UUXINLTLL2P22WXJOIZCTB","item_option_value_id":"CDGB457SW5KNYKK4GOYMGZHB"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"63UUXINLTLL2P22WXJOIZCTB"}]}},"emitted_at":1668290115794} +{"stream":"items","data":{"type":"ITEM","id":"TJRTSRKSM6TYWC43R2XCFIAC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Toward shoulder","description":"Pretty may remain us wonder already account.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"YG5LCA4MXIXOBWY66YEP5RGH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TJRTSRKSM6TYWC43R2XCFIAC","name":"Today","sku":"866","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"GCQ5B7T4OSSEEFWNE4MICP5M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TJRTSRKSM6TYWC43R2XCFIAC","name":"You","sku":"866","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"64Q535H5QMWZRSMWDSFCKEI2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Husband property","description":"Law show nature house. Hair decade record. Somebody pay somebody successful.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"AM3BEM7AORID4543K3BYXGLO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"64Q535H5QMWZRSMWDSFCKEI2","name":"","sku":"442","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"7GQOYFXLOABYXCZGDOEEXGYU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Treatment despite","description":"Time morning positive animal. Reality on live camera among term go.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"L3PMPWG7C5ZVCZAX76GZL3QW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7GQOYFXLOABYXCZGDOEEXGYU","name":"Light","sku":"581","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SQT2D45D4XZKAZR4B2BJHI26","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7GQOYFXLOABYXCZGDOEEXGYU","name":"Skin","sku":"581","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"SEOYN7QMSWCJUCSMQQ3TISAL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wear wonder","description":"Kitchen red despite play above will structure.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"CX2MI4LPKVORCNUSKYR66FX5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SEOYN7QMSWCJUCSMQQ3TISAL","name":"","sku":"895","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"3PPTU3FFDJOQC6HL2WO2EJFG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Change investment","description":"Second central under artist. Perhaps no focus phone tough threat instead.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"YTY6EODJRTHMI5I44ZDMYUZ5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3PPTU3FFDJOQC6HL2WO2EJFG","name":"","sku":"263","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"G7XBM55B46H2TQRCCWFVMXDK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Alone public","description":"Individual pretty dark hit reach seek trip.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"WQ43QMOUYH7LSUI6BSWVEIEA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G7XBM55B46H2TQRCCWFVMXDK","name":"Information","sku":"1006","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DRNKXPQ4TOMS3LQRHJZWL42O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G7XBM55B46H2TQRCCWFVMXDK","name":"But","sku":"1006","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"HF5TK5OHINYF36Y6L2NJ35MI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ball dream","description":"Page next street child relate Republican. Care section last fund chance rate.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"CJFXFNHP3LFDCW5WOOQIPTGZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HF5TK5OHINYF36Y6L2NJ35MI","name":"Region","sku":"161","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"4U3K2ZDWDY5OBBTU27VP2ESI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HF5TK5OHINYF36Y6L2NJ35MI","name":"Notice","sku":"161","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"LTAW4SEDZB7XXLOQ22LF2VFO","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Apply new","description":"Tv over sign start explain. Modern event leader war.","category_id":"PEZAC6C67K4V525PX4FASGRP","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"ASOWOL2HBAFK3E6KJ3JQ2C2X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LTAW4SEDZB7XXLOQ22LF2VFO","name":"","sku":"455","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"SCPTRQ5B7SY7ACGFVWSM45TI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Side that","description":"While growth direction surface eat exist. Citizen develop fine much.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"UQAQN67266Y3VIXO76QM3IIV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SCPTRQ5B7SY7ACGFVWSM45TI","name":"","sku":"469","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"X6GMSQN2HSJZUHLWNY2WP4UF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whole second","description":"Degree tax stock move sort investment over. Them yes allow cost hand.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"5PNOVDPAKKJQLKPM3CDSAKST","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X6GMSQN2HSJZUHLWNY2WP4UF","name":"","sku":"594","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"23GJBKHV3VUEVRSAVTTMQBO2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Become something","description":"Check student week. Together down yes simple dream fear during.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"NEVFKOEIATDMTEVS6TMZ54LD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"23GJBKHV3VUEVRSAVTTMQBO2","name":"","sku":"802","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115795} +{"stream":"items","data":{"type":"ITEM","id":"AACV2WGB7OJAV2XWNOHGSQYJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Prove four","description":"Interview nothing some dream. Until article democratic dinner he across late.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"F7IWV2TSG2WFXK5YCR3Z5XLP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AACV2WGB7OJAV2XWNOHGSQYJ","name":"","sku":"922","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"PPAHWCVOETRCJSH53XD6UDRA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Billion same","description":"Ability between news push center interesting people. For lay meeting court.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"O4TMPGHFZUGZOOWKEL5MHSMK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PPAHWCVOETRCJSH53XD6UDRA","name":"","sku":"188","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"EACHU2AUCYYTY6QUH42GCAXM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Draw oil","description":"At actually contain tend her plant big.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"YUAFYSRLKY4DBZH4E6HSNDX7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EACHU2AUCYYTY6QUH42GCAXM","name":"","sku":"267","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"ENNBPBD3UO4C2VBWZ5HUJUMW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Safe modern","description":"Star could within teach evidence. Fund commercial remember window.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"SWGWPBIQETE3JBYNLD5MAZD4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ENNBPBD3UO4C2VBWZ5HUJUMW","name":"","sku":"320","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"MWZYCMTFI2NVYNI5UL6RKV6H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Must line","description":"Create stand public live. Yeah radio down like buy.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"K3RTMDN37E2ZYKF7BLPT4Q5Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MWZYCMTFI2NVYNI5UL6RKV6H","name":"Least","sku":"541","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TOYEFR4P3J5UTHIIQ7XJWL6S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MWZYCMTFI2NVYNI5UL6RKV6H","name":"Major","sku":"541","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"GJDP27YWTNQL6LNIXR33RUFX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Back serve","description":"Service else much speech check wrong.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"UTQXURLUXGQI4B2XOZKY3X5X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GJDP27YWTNQL6LNIXR33RUFX","name":"","sku":"864","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"UBPI4GK63BB3PTGZPB77FQQY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Between pick","description":"Building door tend evidence world throughout under.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"54724DSBMLOJIQ7VHW2HD4P3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UBPI4GK63BB3PTGZPB77FQQY","name":"","sku":"125","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"AAG6F3G5ZRDRVVIAO7ZDTKEQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Because improve","description":"Leg wide company test program. Because real product. Partner receive great.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"YMQEE6RIPMGGT3PIMI3IZGGG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AAG6F3G5ZRDRVVIAO7ZDTKEQ","name":"","sku":"509","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"VJWDY7EGVVCDCT3BRVWJZS2S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Community somebody","description":"Measure explain beyond guess part difference ago image. Drop key per wrong.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"SJULAAACPSK6IL52AIN3IUJX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VJWDY7EGVVCDCT3BRVWJZS2S","name":"","sku":"790","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"ZYMONSXDAXCMOAWYZI475VWV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"She sense","description":"Each remain actually enough under end born.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"GEBD3V6GVBEWXIFEWFPEY2V2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZYMONSXDAXCMOAWYZI475VWV","name":"","sku":"248","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"3XCOCTZZFPJYBOOCO2X7IQXN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Charge part","description":"Page sound system establish Mrs because indeed. With senior around.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"PA6UK5XZ4XDJ3V5ENN4NH3AL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3XCOCTZZFPJYBOOCO2X7IQXN","name":"","sku":"637","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"TWJQOEE5SJFKZI7THGOUDFCH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Kid data","description":"Best green science specific. Debate travel anything establish wish task serve.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"PWXPK2X33PYZSHMR5YGXGZF4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TWJQOEE5SJFKZI7THGOUDFCH","name":"","sku":"869","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115796} +{"stream":"items","data":{"type":"ITEM","id":"C3BCQGSIQCVYLQICPQW2EIFD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Next catch","description":"Receive lay economy. Avoid student off rise rich.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"RZFIAVLF3EQJNHGVWWEYPHER","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C3BCQGSIQCVYLQICPQW2EIFD","name":"","sku":"877","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"GGVRQA623QB4N7VJBZKMAB3P","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Decade assume","description":"Key thousand help see against increase represent leg. Attention its across.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"SO7NILUYROAWLQ6MDQ4IHCBD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GGVRQA623QB4N7VJBZKMAB3P","name":"","sku":"888","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"SPJYMZYEQDVKQV4HKPIRJNFY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Poor around","description":"Show response despite project. Yourself clearly condition party produce single.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"T2SYUWKKROO3GHTSYUNZSZSS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SPJYMZYEQDVKQV4HKPIRJNFY","name":"","sku":"303","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"OO5AN3GMG7VC4JWY4ZY2AKZE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Run but","description":"Believe across final quality.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"HGFX27C33RYIGKALWTZJ7XDG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OO5AN3GMG7VC4JWY4ZY2AKZE","name":"","sku":"702","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"7BHXRBB4353FP45UQ3DIEMXG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Everything director","description":"Difficult wall year growth. Above red activity admit.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"KFL5HDDKHAZNPP74WIS6LUAW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7BHXRBB4353FP45UQ3DIEMXG","name":"","sku":"750","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"QG26V7DTTEWASZBV4ZPPXO6O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Can size","description":"Whether model send city. Poor scientist them rich the discover must morning.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"KG2C7WOZOBS5BREQRGSLN5CQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QG26V7DTTEWASZBV4ZPPXO6O","name":"","sku":"1005","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"QALL3IVJV4JEF7UJELRSX2H4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Go minute","description":"Exactly ground throw list present design evening. Pass career player debate.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"FMMWV5H7JBZIBR4QBKK54PBB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QALL3IVJV4JEF7UJELRSX2H4","name":"","sku":"158","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"6HMZPEL6NAB677VTRGX6VXXV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Least film","description":"Someone avoid American purpose eight election team finally.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"44R2UNXSMCQ5SFPUTLI5QA6I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6HMZPEL6NAB677VTRGX6VXXV","name":"Tax","sku":"249","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":27000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"CME3ACQAXXV5WGO5G33O46SQ","item_option_value_id":"F2PEKGZCVV6CAH6BT4XUP2MR"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"J3CA2GXONT7PN22MA5VLC7LQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6HMZPEL6NAB677VTRGX6VXXV","name":"Technology","sku":"249","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"CME3ACQAXXV5WGO5G33O46SQ","item_option_value_id":"6IGRW5NPRE32AMH6YULOZCGL"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"CME3ACQAXXV5WGO5G33O46SQ"}]}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"V7YUP2NWTRKYDHQUAUWZ2MLB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hand receive","description":"So environmental American add book popular these.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"I2DMU4DXGS6EG5WATPBL6U34","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V7YUP2NWTRKYDHQUAUWZ2MLB","name":"By","sku":"529","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":17100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SSZ7KOV3FZNJTG6YOUKSDX6M","item_option_value_id":"6FZLAN3I47JD4TSYBSDHVIC2"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"HQQGTFALBC2YEGSKFB7JNAHU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V7YUP2NWTRKYDHQUAUWZ2MLB","name":"Bad","sku":"529","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SSZ7KOV3FZNJTG6YOUKSDX6M","item_option_value_id":"CYEYPU6RJMCV77HASVBVKU7N"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"SSZ7KOV3FZNJTG6YOUKSDX6M"}]}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"VRDNTOTO6PGF4Q4AFBX4T24G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Stay thing","description":"High small make baby. Else score east wall realize factor.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"YLJYTHHT3RW5SWSJ67D4OBVM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VRDNTOTO6PGF4Q4AFBX4T24G","name":"Laugh","sku":"546","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RRV2CHCF7LIVL5NXFV7BQ764","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VRDNTOTO6PGF4Q4AFBX4T24G","name":"Painting","sku":"546","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":21200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"5RMWYYYOODNUWO4NIRXVCFAT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Might simple","description":"Certain network space pass. Crime card each.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"WIBFFV4K5M6DXKHTIGLGZ2MD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5RMWYYYOODNUWO4NIRXVCFAT","name":"","sku":"845","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115797} +{"stream":"items","data":{"type":"ITEM","id":"MSDNRMYNIC4FJVVK6ZBJ4I2Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Against stand","description":"Adult fall respond yes may key. Sometimes deep range talk ready.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"Y5KC4XQITRNJ3SDNS6FJSVYL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MSDNRMYNIC4FJVVK6ZBJ4I2Y","name":"","sku":"659","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"HRVXJG54BS4RDDSIVYE75IRM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Safe myself","description":"Mouth friend into few size. Set fish cover scientist.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"Y6L5NODQHEBRFIBYIQJKD2CC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HRVXJG54BS4RDDSIVYE75IRM","name":"","sku":"743","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"FT2OZL4HCABQ3RFL3Q43I2NZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"While might","description":"Teacher next door thus believe.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"U47I5LMOY4JYBAOAMO6SPYTG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FT2OZL4HCABQ3RFL3Q43I2NZ","name":"Capital","sku":"771","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"G7FQHNY44OXX5R3THOKLFB5M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FT2OZL4HCABQ3RFL3Q43I2NZ","name":"Should","sku":"771","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":19300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"PWLM3DQ7CTEIELGLTNMIPQFO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Case sense","description":"Hair once central discuss address toward. Short wonder tonight guy.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"ZUNGZ2ZKSOQC2GMBKIOIMYP4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PWLM3DQ7CTEIELGLTNMIPQFO","name":"","sku":"1028","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"WSNLH4K4AIB5MXPH34JX7TOP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Take notice","description":"Interesting performance can they president newspaper.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"BKCPWECLULYBN25FCG3UGU35","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WSNLH4K4AIB5MXPH34JX7TOP","name":"Police","sku":"726","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"AYYALYPDKDC76A7JSVM3NGO2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WSNLH4K4AIB5MXPH34JX7TOP","name":"Rich","sku":"726","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"Q67Q76CPL5GAOKG5HKMRHZFL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lot building","description":"Whose better both down both and.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"QVOTZL3GQHRWEIDNWND35Q5W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q67Q76CPL5GAOKG5HKMRHZFL","name":"","sku":"862","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"VBPK6NENEPSC776J3TBBPLS3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Traditional exactly","description":"If culture through moment now. Just note Republican sell.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"XBSS47IGY2BFZOJEH3MPQSRG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VBPK6NENEPSC776J3TBBPLS3","name":"","sku":"287","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"PANEMDCLQBKDA6VUXPONL55Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Month quality","description":"Painting back me since. Us little evidence kitchen nor star commercial.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"AGQVSNMF3JSIZWJZSHPMIPXZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PANEMDCLQBKDA6VUXPONL55Y","name":"Green","sku":"366","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ILU7COOA2JAOHHT4ZZK54UBL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PANEMDCLQBKDA6VUXPONL55Y","name":"Activity","sku":"366","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":7800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"NVA7AFUDNVBCCJS2ILKM2PXZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Certain investment","description":"Sense author throw campaign fly nice. Gun ten Congress health believe maintain.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"RQE6C3IIYANID5GZZTXDO6ZH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NVA7AFUDNVBCCJS2ILKM2PXZ","name":"","sku":"629","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"GPCZAJGEQRIKPKL5WIECNXDE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Prevent lead","description":"Rich west realize sea modern board attention. System fire focus.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"IEYSL4NGD4LXKEHIDPUSCX2U","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GPCZAJGEQRIKPKL5WIECNXDE","name":"","sku":"834","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"YBER7GTQJOJ44Z3ONEFOGOS5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Home past","description":"Art state since I. Set effect agent yeah might out gas but.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"4F4FNKQVICLYJV736BMU5TN3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YBER7GTQJOJ44Z3ONEFOGOS5","name":"Government","sku":"865","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":20600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"AKWHNTORVDQ3WJT75VWIQLRX","item_option_value_id":"FNDEWK26EEKNNL37HH6RK35V"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"OYWE4FDVMDA7PBDR4RQN4TJ2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YBER7GTQJOJ44Z3ONEFOGOS5","name":"Effort","sku":"865","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"AKWHNTORVDQ3WJT75VWIQLRX","item_option_value_id":"4SCTXWNQUY622LZW5EQIGRBZ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"AKWHNTORVDQ3WJT75VWIQLRX"}]}},"emitted_at":1668290115798} +{"stream":"items","data":{"type":"ITEM","id":"S5GATWKLK4DSCULJ7CSTIKJ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Describe population","description":"Sister move win which. Well American answer police.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"6OA5KOQECD3ROJIZ5ACOUTBG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"S5GATWKLK4DSCULJ7CSTIKJ6","name":"","sku":"1019","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"BW3EF3WVAEYML7MCA3GU3SJ4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fly draw","description":"Quite think free garden response enter unit kind. Two its reveal like human.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"JCL43BXIJOK5OEH2C7OC5R27","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BW3EF3WVAEYML7MCA3GU3SJ4","name":"","sku":"384","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"P3FCGLEKPFZQGYMYE3F2GF3P","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Anything executive","description":"Guy serious Mrs again lawyer. Him hold yeah him or.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"7KRPNLZJXUDKNEAMJYMQ5IRK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P3FCGLEKPFZQGYMYE3F2GF3P","name":"","sku":"794","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"WZBWYLFOI6P2A6HKIOWDMNNC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Threat skin","description":"Argue community above best ability all want. Issue concern daughter first.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"AEDZMF6THMV3QBGI2FXNRNPX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WZBWYLFOI6P2A6HKIOWDMNNC","name":"","sku":"982","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"VH4YRUMVW4KBRBQ5GGBWL2P5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Reality show","description":"Speak road history modern create. Law wife design strong.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"3L7H7YTCULA2TEUOSHYPKSHX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VH4YRUMVW4KBRBQ5GGBWL2P5","name":"","sku":"174","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"WKGSMTHZJVP5JVQTKT7VIGKL","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Account without","description":"Better quickly stop there wrong common.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"VEAXVPNDVOPVZIQUL473WBYB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WKGSMTHZJVP5JVQTKT7VIGKL","name":"","sku":"285","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"SMI3OCPGBHKXOLUF3UCQERKI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Guy human","description":"Experience popular increase. Whether any do play page as.","category_id":"3F6KPRH2SRONZN5ACBGW6DDS","variations":[{"type":"ITEM_VARIATION","id":"V546HRAWMFFNVEVBXN2EFLCU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SMI3OCPGBHKXOLUF3UCQERKI","name":"","sku":"1104","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"IDTJ6AS2DWJQM4B7BXTOC464","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Quickly option","description":"Off available fall find page. Movement single play travel something.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"ZFIKP7FQMLPBS7YALC2YEYA4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IDTJ6AS2DWJQM4B7BXTOC464","name":"","sku":"554","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"IEPMIXLKQ4WXZFZFVI6VEEDS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Today arrive","description":"Where argue service land. Room admit rest outside half state challenge ten.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"YIY4UKSWAS4BRW3EKM5ZUTDE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IEPMIXLKQ4WXZFZFVI6VEEDS","name":"","sku":"603","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"LXZULHL3INSO32NSU6YZ2NJH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Forget final","description":"Peace affect court evening ability. Me wear action drive social activity.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"O53AV2MF6SIDKZ5FVUNFF3RY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LXZULHL3INSO32NSU6YZ2NJH","name":"","sku":"1075","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"DJCMXD2LAMWYGUFTYFOHIOLV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Show know","description":"Score today middle. Which nature and suddenly. Challenge few laugh discuss.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"NHRHPTTNGJT3RG2UHUWRDVQK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DJCMXD2LAMWYGUFTYFOHIOLV","name":"Work","sku":"226","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"74M5OL6STTLWCPPQQB5JDAFK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DJCMXD2LAMWYGUFTYFOHIOLV","name":"Result","sku":"226","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115799} +{"stream":"items","data":{"type":"ITEM","id":"M7VIQXHLOYDR7GWPWTUSIDXS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Eat hair","description":"Audience a today notice most. Seek role debate weight number success lot.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"44JKPQ6JSOSVHH7WGQSVLYUK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"M7VIQXHLOYDR7GWPWTUSIDXS","name":"Become","sku":"381","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QO4MY3E7MRPAXXC3SXVMG2GT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"M7VIQXHLOYDR7GWPWTUSIDXS","name":"Old","sku":"381","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"Y5GX3PYOJZKGSPSTHRJVBZEC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Our check","description":"Already about five. Voice if piece boy tree deep everybody.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"73SAB2BOPHJ6T6KJUPDC7D4K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y5GX3PYOJZKGSPSTHRJVBZEC","name":"Happy","sku":"951","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"J7L3JFRJY4JF6UR5LN4X4WVL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y5GX3PYOJZKGSPSTHRJVBZEC","name":"Position","sku":"951","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"TFHH7U257MT4PU2LUO7J7ZLB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whether land","description":"Growth west we rate evening such open.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"CKUIZOHMHQLEIUB5BEG3CTAE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TFHH7U257MT4PU2LUO7J7ZLB","name":"","sku":"1004","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"FOVJIHLQASO3ODLEQUQE6OD2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Case such","description":"Each ten explain about. Same them against evidence drop. Word rise drug people.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"IZPGMOAVRFS2PJXFBMGTFESW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FOVJIHLQASO3ODLEQUQE6OD2","name":"Send","sku":"1016","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"MXMHCEYUZUEUHHE3RUDBQMLS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FOVJIHLQASO3ODLEQUQE6OD2","name":"Too","sku":"1016","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":23100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"53FO5ZO3D2RAFFBLN6TLO5NR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Card yourself","description":"Soon buy always factor firm. Relate somebody step scene discover relate a.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"PCF5KM4J3DWNK7P3HXNAUVNX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"53FO5ZO3D2RAFFBLN6TLO5NR","name":"","sku":"222","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"4WNUJG3DFJOPQSPUM53EJ6QI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Deep majority","description":"Store above camera conference bill line. Player miss want.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"JI6OXZ6SW4CJM2ETXMH5NNNN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4WNUJG3DFJOPQSPUM53EJ6QI","name":"","sku":"237","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"NCGPD3YG52J3AQAPO5R2ZJMW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Source pm","description":"Glass election and seat right center. Subject space along impact.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"62HIJ6YG5MXNCG3NTEVRKIX4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NCGPD3YG52J3AQAPO5R2ZJMW","name":"","sku":"458","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"6FU2BMPHSRJQMY67CXOUJ2SR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Check case","description":"Possible hospital interview possible military.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"B5IMJOBP5MTYBLMNSX47XN7S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6FU2BMPHSRJQMY67CXOUJ2SR","name":"","sku":"312","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"7VM7QIMCR4SHR4WAUEZ5D6I6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Computer record","description":"Player put report tonight see fund kitchen. Fight discover beyond vote right.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"DJJZZZRIACNAC2J4D6FXF52C","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7VM7QIMCR4SHR4WAUEZ5D6I6","name":"","sku":"502","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"PNSHLGHAC4A4K2EHAB6PGN6Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lay trial","description":"Charge skin boy floor. Think kind task suggest produce happen region.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"O4X37MDOJYQPGRSSASCCWLDP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PNSHLGHAC4A4K2EHAB6PGN6Y","name":"","sku":"590","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"B6XYXDFAYYYGSHS4FHRQL3WD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Newspaper student","description":"Human hour decade would.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"W5OI5YC4B6XHISHH7OMULH7B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B6XYXDFAYYYGSHS4FHRQL3WD","name":"","sku":"690","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"LE3DENJ6SNS2VHA5AXAPE45Z","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yard treat","description":"Thousand admit little activity network beyond same responsibility.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"M3QS6IOYAPJLZG63PMMFSEC4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LE3DENJ6SNS2VHA5AXAPE45Z","name":"","sku":"852","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115800} +{"stream":"items","data":{"type":"ITEM","id":"AAULRYJW3WPNEEFH6WDHKHFQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ago home","description":"Article ago agency especially teacher bring me. Now success sure.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"OZZS3MBUVO5BOTO2HD3AZWTN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AAULRYJW3WPNEEFH6WDHKHFQ","name":"","sku":"885","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"CLRHHSTJVVTNXFHQGWU6G3Y4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"None during","description":"Data cell close economy over relationship.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"HANTWBOJVXJ3Q34GFJZ4IARS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CLRHHSTJVVTNXFHQGWU6G3Y4","name":"","sku":"523","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"Y3IJONOOEUR3JHU5SO4X4XLD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rest east","description":"His set movement nothing. Market speech arm almost note alone.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"VP2BP464UJBJQK5MGZ4P3K7S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y3IJONOOEUR3JHU5SO4X4XLD","name":"Agree","sku":"585","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":22400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"MO6ZEQHVWIYZ6HFLE2HV4NY4","item_option_value_id":"BFAMR5YAY6BBM7PGWHPHOFK7"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"3JOK4ONPYVWRHK5CTFXTEHIT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y3IJONOOEUR3JHU5SO4X4XLD","name":"Watch","sku":"585","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"MO6ZEQHVWIYZ6HFLE2HV4NY4","item_option_value_id":"DOI3OZCL2F5MGQWXNB74XBVR"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"MO6ZEQHVWIYZ6HFLE2HV4NY4"}]}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"OCTK7WTRJF4C6TEIQE7ACT6Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Understand put","description":"Popular remain price ball. Recently teacher arrive officer.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"HNHRQTIVS4GP6VFKE4Q7IFBB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OCTK7WTRJF4C6TEIQE7ACT6Y","name":"","sku":"640","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"QLGN6G3DS7PWLKM4773CBLJN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mission everybody","description":"Follow apply bit or fact too.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"5CPFWPXO6DPZDSHLKAHCZA2Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QLGN6G3DS7PWLKM4773CBLJN","name":"","sku":"788","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"3HDVSZNR6YA24SDWKOLCPV2Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"World positive","description":"Truth win understand. Alone adult commercial pay southern.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"O3AE3DKAVCZRVM3FY7DAKEDH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3HDVSZNR6YA24SDWKOLCPV2Q","name":"","sku":"300","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"LYB3TXD4AKTFJHDCOQAVL5NI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Collection southern","description":"Box score leave large large exactly energy body. Common energy often news end.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"IOXOT2DO6GBYHJQZCN4QULZN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LYB3TXD4AKTFJHDCOQAVL5NI","name":"","sku":"460","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"KGPKYQSBEVTKCMIDPQD3KFDV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Arrive whole","description":"Treat another accept number miss stock make.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"GELOY5IHCTVA5BFQ5AKGY3XE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KGPKYQSBEVTKCMIDPQD3KFDV","name":"Check","sku":"476","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SOEZJDPIJTFCAX7TBN263KB2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KGPKYQSBEVTKCMIDPQD3KFDV","name":"Myself","sku":"476","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"NLFRBREDQNKFZQ7QUD64W4JL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Response follow","description":"Pretty couple however rich. Baby run oil development.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"GUEM7HYFWTL2425YKWX7K7US","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NLFRBREDQNKFZQ7QUD64W4JL","name":"","sku":"618","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"XPULE7CU534XTJUCXB4K7O2F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"National notice","description":"Amount continue upon throw story. Guess crime public add.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"E2DQS5IXUGHZNOYKZJUUT5N2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XPULE7CU534XTJUCXB4K7O2F","name":"","sku":"677","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115801} +{"stream":"items","data":{"type":"ITEM","id":"HS5TWIYMI3JAJTTV2FM4LVT4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Author agency","description":"Scientist far most. Offer form speak must husband strategy. Way learn our wait.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"PDBA5EGVZLGUK3LOBNCLW5WD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HS5TWIYMI3JAJTTV2FM4LVT4","name":"Apply","sku":"937","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":15800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"7IJAOQPC427OHOFI2QTZ6HIX","item_option_value_id":"UEQIYFKXIB5WFCXDNQVPC5OD"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YKN2XVQU27PIUGJYMOCKKKQW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HS5TWIYMI3JAJTTV2FM4LVT4","name":"Back","sku":"937","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"7IJAOQPC427OHOFI2QTZ6HIX","item_option_value_id":"NFBLEYCGL2H5RP6K5S6EP2QQ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"7IJAOQPC427OHOFI2QTZ6HIX"}]}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"A6VFUYDDBOGKXZMUALZEFYMY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Reason kitchen","description":"Indicate bit blood whole sign fund.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"M6FOH6MZUQUS6ZQ6V2L5CI2H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"A6VFUYDDBOGKXZMUALZEFYMY","name":"","sku":"1055","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"DAH4UJIRDEI56D37HVABY4OC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Talk away","description":"Commercial explain attorney trial.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"6DKB7HAWKI5T23MMKPGMVPHS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DAH4UJIRDEI56D37HVABY4OC","name":"","sku":"115","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"BR3WNTHHQKHVPYDJUXWLP7XM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Kitchen now","description":"Attention create image author Congress fast.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"2IUTEOTLQ6YWULZW6DVWZX5H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BR3WNTHHQKHVPYDJUXWLP7XM","name":"","sku":"122","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"KFQN6UMAE36JL5LJJMW6J32P","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Involve off","description":"Yourself song artist. Generation military into exactly up general.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"U3567HVHMTZ34LEOW7XGS4CC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KFQN6UMAE36JL5LJJMW6J32P","name":"Memory","sku":"231","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KID5FNQYYHWFLLSEOXW2G5KQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KFQN6UMAE36JL5LJJMW6J32P","name":"But","sku":"231","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":28600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"QWDXT3YJBFYNQNI3235RAWQS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Our whole","description":"Issue sound task bank today arrive.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"BN23APLOCE5KBJBTWZ2LTLGH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QWDXT3YJBFYNQNI3235RAWQS","name":"","sku":"658","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"P5WLUCTQFNU356TZM2AT5AZM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Manager strategy","description":"Gun art question. Trip society himself section. Enter run hundred manage.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"E2RVNIEO4Z3VAENOVBIS7UW6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P5WLUCTQFNU356TZM2AT5AZM","name":"","sku":"823","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"DEV2D3ZNHSBPFA5WFWUHPAFP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Again course","description":"Defense let hard compare. Firm hot political son politics statement.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"GMHXRKPI26QDOPUTJTTYO3RJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DEV2D3ZNHSBPFA5WFWUHPAFP","name":"","sku":"943","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"HEH7JATI6RMCX7NTPXQRS3NS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Budget those","description":"Key third explain current day around create material. Off approach power nor.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"WZCDJNZ6OA4API3AMKLM4ONG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HEH7JATI6RMCX7NTPXQRS3NS","name":"Want","sku":"971","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"H5LVOGZNJ2JCPAF4LIWNEDOQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HEH7JATI6RMCX7NTPXQRS3NS","name":"Risk","sku":"971","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"ZXCEVFSFJO6ETABCOJ2IY6NK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Already write","description":"Manage accept system allow before edge. Follow present film drug style.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"ADR3SPTN2GBGXVMVV2P5BNIZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZXCEVFSFJO6ETABCOJ2IY6NK","name":"","sku":"884","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"UEB63EGDXNIKLRNPBT73YRLT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Guess usually","description":"Each audience check. Approach stop clear catch unit.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"GKDOX4V3VIDGB2XABPOEAE4F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UEB63EGDXNIKLRNPBT73YRLT","name":"","sku":"252","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115802} +{"stream":"items","data":{"type":"ITEM","id":"X5V6SVE4GQOGXHW4BWJU5S6O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Recently away","description":"Say billion few money act. Relate nature family scene rule what.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"AP3KSDLXQNJ7RY3DBCLCNWMW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X5V6SVE4GQOGXHW4BWJU5S6O","name":"","sku":"365","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"2EJRJX2E4ZSGNXT577QBBZW2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rock let","description":"Structure the red chair technology most. Black writer wind various his minute.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"UFCZ5FWMZO7IHBAFDHFXAFRW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2EJRJX2E4ZSGNXT577QBBZW2","name":"Deal","sku":"586","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SOWQE7NFKEIM6N7L5XODGJTM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2EJRJX2E4ZSGNXT577QBBZW2","name":"Wide","sku":"586","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"SYEGMHOWTCQXUOQQ5PR4DB54","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Well up","description":"Say always effort upon direction sure none.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"CNBNTYSKTZG5M4WQE5NEHVSP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SYEGMHOWTCQXUOQQ5PR4DB54","name":"Too","sku":"621","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FSFIJFWGLZHXWUIC2PL2LPCW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SYEGMHOWTCQXUOQQ5PR4DB54","name":"Between","sku":"621","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"CJS3VLERTJBY7AGN6WWDZ4OL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wind single","description":"Ready expert call room. Summer both leader glass a try door.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"SD7UV2GT3U3IG2SRZ7K6UFIJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CJS3VLERTJBY7AGN6WWDZ4OL","name":"","sku":"687","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"PATUL5X2HMI2I7ZBVNLVAI4M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Story plant","description":"Place rest senior. Democratic evening body employee wide cut range.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"VMUYXAIPUULQWXDZGANT6WK5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PATUL5X2HMI2I7ZBVNLVAI4M","name":"Bar","sku":"751","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PLJ5GHUGCB7N73G62HRRMXJ4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PATUL5X2HMI2I7ZBVNLVAI4M","name":"Character","sku":"751","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"BLZ3ECKLK6BTDTZFLNUQKC73","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Training discover","description":"Yourself economic act family. Lose material no magazine.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"QW7JAAUME4AEDRL6T5GEG5LW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BLZ3ECKLK6BTDTZFLNUQKC73","name":"","sku":"782","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"Y7DT26WUG5HKXL2FFTXBGVSU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Last information","description":"Across of available everyone else democratic style pull.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"VLKINTMTD25HLK4FAR3ZCX5M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y7DT26WUG5HKXL2FFTXBGVSU","name":"","sku":"172","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"3FKXQT7LJJ7BAQMC4Q5KGDY7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Positive else","description":"Middle fight off responsibility executive six. Phone while year chair.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"ZN2VM6DXIRU5QHVLXYRV5AE6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3FKXQT7LJJ7BAQMC4Q5KGDY7","name":"Lead","sku":"251","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FHNRDAFAQBQWHZ5FADX3NYGH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3FKXQT7LJJ7BAQMC4Q5KGDY7","name":"Again","sku":"251","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"4EYOY2XG35S6OK4YLZL43N44","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Student carry","description":"Well reach tell watch check.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"USMEQXKXDO3KJIYN7YSP6UOT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4EYOY2XG35S6OK4YLZL43N44","name":"Charge","sku":"276","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"Q7QOKZARY2N6SJBGIK2QVFCO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4EYOY2XG35S6OK4YLZL43N44","name":"Important","sku":"276","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"HCFVCYIO32GGWSWPA6IMBA5W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Safe any","description":"Truth huge process until. Learn if picture bar among own want size.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"SIN77JUSJHN4ORFNPFQZRO3W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HCFVCYIO32GGWSWPA6IMBA5W","name":"","sku":"878","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"CBVTHEHXVOFZND2Y5ZEOPVJQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Financial gas","description":"Here break design south here clear. Ok over live often.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"ZNKF7QY7G3ZOV4MLYREABIRA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CBVTHEHXVOFZND2Y5ZEOPVJQ","name":"On","sku":"913","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":7200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QP3T42G45D67PAGGGCNWEUFZ","item_option_value_id":"SFZFBYJEAWORSTRJAFMMRGEQ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"76ADITIYB7WA3LZQFIEPQHBN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CBVTHEHXVOFZND2Y5ZEOPVJQ","name":"Probably","sku":"913","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QP3T42G45D67PAGGGCNWEUFZ","item_option_value_id":"UO7I7AV3FZYG4FI6XJVJ7JQU"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"QP3T42G45D67PAGGGCNWEUFZ"}]}},"emitted_at":1668290115803} +{"stream":"items","data":{"type":"ITEM","id":"F4MGJYMVH6FJ4HQHI5TZ42HE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Receive beat","description":"Practice term truth four city safe. Window military ask discuss result day.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"3QXJVPKHTH2XU63NQJHGACAK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F4MGJYMVH6FJ4HQHI5TZ42HE","name":"","sku":"1094","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"V6B5NB46O463KEC72GCYKH6Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hotel true","description":"Pressure have keep oil model thus choice since.","category_id":"3F6KPRH2SRONZN5ACBGW6DDS","variations":[{"type":"ITEM_VARIATION","id":"P22V5AEUFRPVLNNOHEVORWTH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V6B5NB46O463KEC72GCYKH6Y","name":"Three","sku":"1106","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DM6QQVTVKZFJ5V6UOO2UVIQ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V6B5NB46O463KEC72GCYKH6Y","name":"Determine","sku":"1106","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":28000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"H2UU526PJTQCZCYGEO5UMWWO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Claim bill","description":"Bar court month point skin movie cut. Music pretty newspaper according.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"QV7AWSWJ5ZEZ2OWTK7YMWQSU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H2UU526PJTQCZCYGEO5UMWWO","name":"Perform","sku":"826","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DXWPCB6ZT2JCEVSL6GFB6AFQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H2UU526PJTQCZCYGEO5UMWWO","name":"Ready","sku":"826","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"FUBQVKKKQWJFRAKHBOKNTVBA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"First goal","description":"Financial business accept reason growth figure.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"6SKW2PZXAS4OG7YFM7D5BRNQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FUBQVKKKQWJFRAKHBOKNTVBA","name":"Report","sku":"873","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":15200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"45DIWQBAHAY7OTCAG6X652EE","item_option_value_id":"BOEMJ2LEHQTVVDJRTZIKC2GC"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TCUEJTPZN5S4KXXQ4XHDNDDB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FUBQVKKKQWJFRAKHBOKNTVBA","name":"Door","sku":"873","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"45DIWQBAHAY7OTCAG6X652EE","item_option_value_id":"FAVL4PMZYM22OBQPOFXPWCUM"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"45DIWQBAHAY7OTCAG6X652EE"}]}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"DEC3CUOUOPWTT4PSAPI54IYA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Least local","description":"Opportunity before inside spend land executive.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"ILKL7MQSQQMG3BOZBZ45S6FF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DEC3CUOUOPWTT4PSAPI54IYA","name":"","sku":"988","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"CYPEUYBN5C3V7RZ5SZ2466FB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Game message","description":"Risk sign size quality nothing. Machine write grow machine along me.","category_id":"3F6KPRH2SRONZN5ACBGW6DDS","variations":[{"type":"ITEM_VARIATION","id":"3SBUFLFMHBOVTK3OPKPGPNXU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CYPEUYBN5C3V7RZ5SZ2466FB","name":"Forward","sku":"1101","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FX5TUD3WXEGRKI2KQBCBN6PF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CYPEUYBN5C3V7RZ5SZ2466FB","name":"Imagine","sku":"1101","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"FLNU3KOLN5X3JLURHVV55THK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Science must","description":"Left first green over white use many. Particular theory light.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"D3QRF22JYZRI4KMPCAAYGUVU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FLNU3KOLN5X3JLURHVV55THK","name":"","sku":"155","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"HVKIN4WSS4U6MBFGA5Q7OGYE","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Activity whose","description":"Series agreement type deep school. Ground wife must use.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"XJO3JDKHCQ5COAAQHB4KITYQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HVKIN4WSS4U6MBFGA5Q7OGYE","name":"","sku":"362","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"T2GXBDSPLVTWP75T2YPZ73QR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Professor fish","description":"Southern born thus special new it. Site kid PM garden black.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"YAH7FGTZGYXLWTIPLEHSUIVR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T2GXBDSPLVTWP75T2YPZ73QR","name":"","sku":"383","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"PZK6LEPB7DKZDQOCURWLCRLG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Future almost","description":"Economic meet measure ok different southern.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"KRLWZBEXKLBPPTHJ7DSTWBQJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PZK6LEPB7DKZDQOCURWLCRLG","name":"Sister","sku":"556","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"N7A5QBBS3HVB7TGLIFNLMEKQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PZK6LEPB7DKZDQOCURWLCRLG","name":"Hope","sku":"556","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115804} +{"stream":"items","data":{"type":"ITEM","id":"ZN5XFQNJJ3UYDDJZVRUERSHH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Under wrong","description":"Food pass history agreement have would sister.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"TTFCABECM43KW2I2FY2N7JVJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZN5XFQNJJ3UYDDJZVRUERSHH","name":"History","sku":"569","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PYTWX7BO2JAPFUO5PFLP2LNK","item_option_value_id":"LDCHRCB32RSVBUF3IKTFHMS6"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"M6KSNN2B2W2GEPDZNPX4CZBV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZN5XFQNJJ3UYDDJZVRUERSHH","name":"Head","sku":"569","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PYTWX7BO2JAPFUO5PFLP2LNK","item_option_value_id":"ZQWLPVEN67BVLBI3OBAY7327"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"PYTWX7BO2JAPFUO5PFLP2LNK"}]}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"ZHQEWKAFRFHLUVAAP4TSHQWI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Which manage","description":"Then purpose blue modern. Need character see note suggest beautiful.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"P7U74JATZZD5TG3N2752UKIY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZHQEWKAFRFHLUVAAP4TSHQWI","name":"","sku":"804","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"XIHIGRC7WKS22OI3WC4W5QKO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Particularly well","description":"Girl black maybe real common type likely.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"SND2D7HFMMCGRLHAD7LT6KGB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XIHIGRC7WKS22OI3WC4W5QKO","name":"Use","sku":"176","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"EWYP5OIMNXMZ6WLHHFHLI3EL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XIHIGRC7WKS22OI3WC4W5QKO","name":"Part","sku":"176","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"CXQYI2XVD7A622PILI3VAGS2","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Account discuss","description":"Dream past after law dog establish. Popular citizen song glass.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"XYSG2HVAS5YZHERANLN2FT4B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CXQYI2XVD7A622PILI3VAGS2","name":"","sku":"413","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"2ECYYKJ23HXLGCD4EZSR23Z4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Middle down","description":"Send left discover customer resource. Piece month brother fine.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"PNFQVLPG24Y7CC36MYT6WCNK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ECYYKJ23HXLGCD4EZSR23Z4","name":"","sku":"438","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"UZNRNMUIB4HBL5AJBZUNVJPJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Quality nation","description":"If church must enough win five collection series.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"UBBMLGWIFVEE5RGM3VFSWOX2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UZNRNMUIB4HBL5AJBZUNVJPJ","name":"","sku":"927","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"5ONZKBFVUAJROLAW5UZTTA76","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fill through","description":"Myself field trial dream. May thus team yourself suggest tree bag here.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"PMPNSM2POT65O6V5LLL77UFC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5ONZKBFVUAJROLAW5UZTTA76","name":"","sku":"212","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"IFO4WURF2QO3OKSAWKJD2DJA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Person mission","description":"Direction which respond must.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"ZJTJ7MYRPY5Y77HTO6SEHOR5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IFO4WURF2QO3OKSAWKJD2DJA","name":"","sku":"419","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"MN5TVXBPNAGEBNK25H6MFHNJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"System over","description":"Goal cell example participant far point. Wait national onto why away reduce.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"2TC3MHJO7YDBOCXX3XLZBESC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MN5TVXBPNAGEBNK25H6MFHNJ","name":"","sku":"692","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"B6LT5YDM5JF74TSNL5WNW73S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Clearly rock","description":"Appear item always skill well area.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"SQLMCZ274JI3DD4IXYHPZADK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B6LT5YDM5JF74TSNL5WNW73S","name":"","sku":"165","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"MHIOVNRJL46DKH5K46IQAOY6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Board range","description":"Still scientist south four bar notice order. Evening method all.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"NCQH5I5YU7SM6PKYLOUCLUDI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MHIOVNRJL46DKH5K46IQAOY6","name":"Everyone","sku":"281","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FYIPHH3HCDKLDRYNW6R5E7KQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MHIOVNRJL46DKH5K46IQAOY6","name":"Bring","sku":"281","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115805} +{"stream":"items","data":{"type":"ITEM","id":"34IMCSRQTYGT2G4B2DFAB2HK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Toward different","description":"Yourself we management field. Receive task job unit three full.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"I5LU55HQNGZJVDLLXDIF2YA4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"34IMCSRQTYGT2G4B2DFAB2HK","name":"","sku":"439","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"CSBWH4GOKOH2DAOERF54UXK7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hear campaign","description":"Rest as worry result as. Serious decide long for base benefit loss college.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"IQEM7VTWXF2CZAF4S3KATMOU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CSBWH4GOKOH2DAOERF54UXK7","name":"","sku":"448","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"HFGEV6OCBZEP3GRMEHEF44QV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Institution somebody","description":"Him successful tell care billion month if. Pressure listen dream.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"DTYFGKWQZFQTM7Z7LB7XGR2H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HFGEV6OCBZEP3GRMEHEF44QV","name":"","sku":"612","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"KNN3OXQ3K5IVCRJBABNJRGFY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yes society","description":"Resource show Republican not behavior economic.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"GUBZUIRGSRZH63DZEACTS3HA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KNN3OXQ3K5IVCRJBABNJRGFY","name":"Garden","sku":"1041","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"3DDICD6PDLRQFO666WNGSWUM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KNN3OXQ3K5IVCRJBABNJRGFY","name":"Education","sku":"1041","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":13100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"YHEOEQGYN67TE7NMESAFS3ZL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Western grow","description":"Win happen language one whether though.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"YSLBFIMKCL4XZU7FVYYBJ7TT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YHEOEQGYN67TE7NMESAFS3ZL","name":"","sku":"1044","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"UTITH6LEHNCYGJTQ3P5N7ED3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Forward school","description":"Sort rest real market strategy physical. Interest past end ask.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"CAWQUC5LXKBHW4TRQL3M5A5I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UTITH6LEHNCYGJTQ3P5N7ED3","name":"Case","sku":"193","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":22800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SENQTCVE7GYA6YGOOHS4FLEK","item_option_value_id":"THIHUBIWSZAQ45YFHOUHIMGE"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"CZQ5FHHZ6PJY233SD3RXLXYC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UTITH6LEHNCYGJTQ3P5N7ED3","name":"Specific","sku":"193","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SENQTCVE7GYA6YGOOHS4FLEK","item_option_value_id":"SCEYIELKDGRI4Z5AQRFIGOTE"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"SENQTCVE7GYA6YGOOHS4FLEK"}]}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"7CEIARPHKTHLQIEJHDS77VFA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sit include","description":"Collection study almost whom child west. Half federal if admit important.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"5UUD72PAOQIH3P3IJ2Z3DL26","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7CEIARPHKTHLQIEJHDS77VFA","name":"","sku":"863","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"W3RLYQ6UPYOQ3ZZLXGBUIYXL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Support office","description":"Partner serious tonight ten prepare make.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"5QGSBZ33OXSJOLD7KKTMKSSP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"W3RLYQ6UPYOQ3ZZLXGBUIYXL","name":"","sku":"962","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"CN77LF2LA3HCR2F6FTMJQNPQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Billion notice","description":"Hit impact certainly. Others Republican first make.","category_id":"G254DMXKLHIMCDXBZM6GZSPW","variations":[{"type":"ITEM_VARIATION","id":"TAUI5Y4OSQFP5Y46ZXXKSIFT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CN77LF2LA3HCR2F6FTMJQNPQ","name":"","sku":"109","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"FYWCLPJJUI5GMXCBM57IU6XX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Since address","description":"Air box most speech. Project citizen others.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"2Q2L7P6V2CMTU67OU4P2ISNS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FYWCLPJJUI5GMXCBM57IU6XX","name":"Issue","sku":"246","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6BFVYEGBRLHOUDJMALR7EPMJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FYWCLPJJUI5GMXCBM57IU6XX","name":"Father","sku":"246","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"JPMQBKWN2OKSRD33KBJLHOXG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Science second","description":"Benefit lose minute data case executive right.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"RMTWORYNJG7XDA45YYT2QUIU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JPMQBKWN2OKSRD33KBJLHOXG","name":"","sku":"1022","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115806} +{"stream":"items","data":{"type":"ITEM","id":"LJTEYRMPUW5TJFMQ2XDFWWUN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Cup science","description":"Then administration fight weight. Home to successful pull.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"CPNC3MGWQM3TFCWDGIHTB2OG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LJTEYRMPUW5TJFMQ2XDFWWUN","name":"Politics","sku":"145","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":14800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PPUXNXFUZVM42HSZTPFQFEY3","item_option_value_id":"ZIKOQMHPSCIFCNRM5JJ6VLJK"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"5PPDGI4N24HXRHDOBHWA3XOP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LJTEYRMPUW5TJFMQ2XDFWWUN","name":"Letter","sku":"145","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PPUXNXFUZVM42HSZTPFQFEY3","item_option_value_id":"55PS5NV3XJ32UR3FQGLYZF3D"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"PPUXNXFUZVM42HSZTPFQFEY3"}]}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"XJFEUHGH35ZV2RFPJZBA23HP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Benefit end","description":"Street much above adult suffer. Tough south want business education worry who.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"3D3OX76RJYL2VWXRPNHHTTW6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XJFEUHGH35ZV2RFPJZBA23HP","name":"Or","sku":"196","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"5EVMHZHRLKLXNKXVQ7ETPLVD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XJFEUHGH35ZV2RFPJZBA23HP","name":"Capital","sku":"196","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"AONYF4ICFIKDU2O5JL2SFZFF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Party understand","description":"Paper success language recent. Performance thing should door.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"TSV56W6Z6C6RAGHP2DWDDOH6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AONYF4ICFIKDU2O5JL2SFZFF","name":"","sku":"403","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"BB23YZPLQYOEXOMXQOTNNORE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Question customer","description":"Girl executive surface draw ever appear. Past receive shoulder road.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"WVHQLSQ3AL5KNO57GUGSNJGA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BB23YZPLQYOEXOMXQOTNNORE","name":"","sku":"462","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"PYNPLW7UEM2GZAIRDB2WDFFL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Glass effort","description":"Represent visit continue conference life. Adult seven career.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"4USOJGECVATBM5FK3VI7NFQA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PYNPLW7UEM2GZAIRDB2WDFFL","name":"","sku":"664","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"U7W7C66BNAEL7UA4FXPWKAAM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Trial these","description":"Suggest I black food image. Air many your fine special box.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"P2BDGTW6IZNUPCC2PIGJJVTL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U7W7C66BNAEL7UA4FXPWKAAM","name":"","sku":"114","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"GG6UDUWH5XMYIBWOZ6JGPOVM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Occur draw","description":"Still including claim nation. Big those nature somebody member age.","category_id":"EUOOIJ4J5OCZY5WNAIDEZCS7","variations":[{"type":"ITEM_VARIATION","id":"6VBPJPTIYFLAZEF3Y6E3R5KX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GG6UDUWH5XMYIBWOZ6JGPOVM","name":"Meet","sku":"336","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"V252WAF73TO2UOBBV5N67HKX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GG6UDUWH5XMYIBWOZ6JGPOVM","name":"Hair","sku":"336","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"UOEZTC7TFZGMGTQT3AMBSGPA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Similar relationship","description":"Pick hear discover mean. Practice mouth every quickly base open computer.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"OBMV34ATBG3QPVLSAPTIIBS6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UOEZTC7TFZGMGTQT3AMBSGPA","name":"","sku":"1070","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"FE5EMRSWE4JLMV64NI2DGZ72","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Family bill","description":"Office what much. Image free medical president believe lay kind.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"KQV2CXCNEZEV62S7DJB2TNJN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FE5EMRSWE4JLMV64NI2DGZ72","name":"Realize","sku":"141","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BPGLY5XVVSFVQDMO6VFSUY4T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FE5EMRSWE4JLMV64NI2DGZ72","name":"Other","sku":"141","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":9500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"FRXTDRVLFUJJ7APUYISAKPJV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Center benefit","description":"Visit meet single purpose show provide bad.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"IVND7GMCGYQXLW2QVUXVRQGV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FRXTDRVLFUJJ7APUYISAKPJV","name":"","sku":"219","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"OLTJ3AIA2SYPCFYOQ4FMDMXU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Center sign","description":"Program others begin improve develop deep check.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"FXB7MSAR5TFWGCKP72JSSWBN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OLTJ3AIA2SYPCFYOQ4FMDMXU","name":"Letter","sku":"505","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":1000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"5T3FBRBLIAIDJFTIVYAVTROK","item_option_value_id":"7ZDQMSAG4DQ4SIRLRDZISXN3"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7X4YMTMZEWYSNZCMH2QJQGDE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OLTJ3AIA2SYPCFYOQ4FMDMXU","name":"Car","sku":"505","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"5T3FBRBLIAIDJFTIVYAVTROK","item_option_value_id":"EJ6QUX75DABFGXT4JJ4UQBS6"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"5T3FBRBLIAIDJFTIVYAVTROK"}]}},"emitted_at":1668290115807} +{"stream":"items","data":{"type":"ITEM","id":"5DVAYJFLTKMDHLZUNH7OKYNP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hot realize","description":"Trial from cultural serious. Down full stuff environment need thus.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"BMD54N33KTVCJS3HNVN363MG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5DVAYJFLTKMDHLZUNH7OKYNP","name":"","sku":"814","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"GFAZJ7K2T5ZYIC6XPBRSBKIW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hope large","description":"Establish we across space run see. Half whatever someone concern single.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"ZLARINO42UMH6J4NX6G6HSMR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GFAZJ7K2T5ZYIC6XPBRSBKIW","name":"","sku":"398","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"2KCC4JK3CPMZRCSGJKVDJENY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Price small","description":"Number home hotel. Deal tell talk all cost. Really research country mean.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"4GKCKWUOV7XDHQXUQBS4TLOA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2KCC4JK3CPMZRCSGJKVDJENY","name":"","sku":"410","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"HUB6F3H6BOFPRTI2FJACXD4J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Every wonder","description":"War worry mean some kid think meeting tree.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"H2TFXSV5ZUFVLZI4ODV3BY5K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HUB6F3H6BOFPRTI2FJACXD4J","name":"","sku":"709","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"GILFRVIH4OEQRGGTIX2LGJNX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"President fly","description":"Hope draw model. Draw save behavior environmental truth right couple.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"G357BII7E6OTXERVQLQOGDJ4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GILFRVIH4OEQRGGTIX2LGJNX","name":"","sku":"715","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"LVYYCMZ5OOK3PMTCYO3DOHVV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hand deep","description":"Science thing picture challenge available.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"TJ7V67KFXWIA4L5AAX4745TX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LVYYCMZ5OOK3PMTCYO3DOHVV","name":"","sku":"732","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"OYXFZ34NV4V4LKI6MRFNEU5V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Still whether","description":"Window little night good. What billion benefit huge.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"Q7I5YNV5W7HMEC4HOTZMNJK5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OYXFZ34NV4V4LKI6MRFNEU5V","name":"Sport","sku":"821","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"XJEEHCCBMFFSH26GMMBBMENB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OYXFZ34NV4V4LKI6MRFNEU5V","name":"Create","sku":"821","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"BFGGSFOSBBBVW6FELCLAYEIC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Family vote","description":"Imagine Mrs live only continue. Manage line never rise. Specific write set.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"N5AURGR7LGOIGZEGBDUXMPPD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BFGGSFOSBBBVW6FELCLAYEIC","name":"","sku":"912","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"HZ2FUJEN7FKCUFNXY6DBAUKP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Under per","description":"Else child window energy. Moment field meet wall cultural.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"LMD5KTNRFPYGSK3FGDHZDRB6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HZ2FUJEN7FKCUFNXY6DBAUKP","name":"Ago","sku":"1017","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":10500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XQCXVX4KJY3RBWSFVMOIBAQ2","item_option_value_id":"HU7OLLJJUSY24JLWIWHAVTGM"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"2FIKM3CXHJETF2RBBSNS6V65","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HZ2FUJEN7FKCUFNXY6DBAUKP","name":"Wait","sku":"1017","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XQCXVX4KJY3RBWSFVMOIBAQ2","item_option_value_id":"J6MW3MD3RGMBOYL4WXO2ACZK"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"XQCXVX4KJY3RBWSFVMOIBAQ2"}]}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"Q3JD5EMJEIFL6BHUESUSAGSO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Land light","description":"Chance send approach camera recognize another.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"YZ35IO2SNTSRFYORS6TE5TOT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q3JD5EMJEIFL6BHUESUSAGSO","name":"","sku":"524","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"JMV6PN7YESU5RKAUSLLCBLCG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Year quickly","description":"Use challenge choice language. Economic Mrs game party.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"FUTDZDFV2V6UMRFTONBQ3EY3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JMV6PN7YESU5RKAUSLLCBLCG","name":"Explain","sku":"673","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":29400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PELYNG5EA3JW4HDTDTOAADDQ","item_option_value_id":"NY3MCWFMVJ5IZM2GF2BMU63M"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"T3YX4DJBEMCAS63QQKRKQKTQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JMV6PN7YESU5RKAUSLLCBLCG","name":"Often","sku":"673","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PELYNG5EA3JW4HDTDTOAADDQ","item_option_value_id":"QABN7X7PAF4AZ63WDX43T63P"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"PELYNG5EA3JW4HDTDTOAADDQ"}]}},"emitted_at":1668290115808} +{"stream":"items","data":{"type":"ITEM","id":"V2O7D5E4HRLEIHQ77GHX7GVH","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Another least","description":"Certain spend develop happy positive land.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"PF3FIW5YYVRCZOTUCEEW5MTE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V2O7D5E4HRLEIHQ77GHX7GVH","name":"Fund","sku":"793","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"C4MLZMW6XJT47FLFK24AVCYQ","item_option_value_id":"33QIHTYCTLLEGTNKGR42UKGT"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"CP7LOJ7INR3K3M6QF2YEI4P2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V2O7D5E4HRLEIHQ77GHX7GVH","name":"Figure","sku":"793","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"C4MLZMW6XJT47FLFK24AVCYQ","item_option_value_id":"AHFUOWYSPLDLYDJUZTYXQOZZ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"C4MLZMW6XJT47FLFK24AVCYQ"}]}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"3WHMGDTGWHTDRUMLHZUS4SSX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Treatment kind","description":"By herself minute watch citizen deep on share.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"I2LRGZRCYBN4XY7357FKAUMQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3WHMGDTGWHTDRUMLHZUS4SSX","name":"Degree","sku":"857","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":18500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"F7U3W4A6MBJH4W6LD6JHOIJR","item_option_value_id":"5B4J2JG43FW6R5C6KDSJIB4Y"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QTBJC5DAVL6W3DYMLCBSONZS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3WHMGDTGWHTDRUMLHZUS4SSX","name":"Full","sku":"857","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"F7U3W4A6MBJH4W6LD6JHOIJR","item_option_value_id":"LP4K4SLFRRZACCZ4YONSMPIS"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"F7U3W4A6MBJH4W6LD6JHOIJR"}]}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"Q6ONHSFLNJM6KYKLTRCGWNZD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Eye case","description":"Seven what what field risk couple. Why open accept offer investment ahead not.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"KGANHDNLHJV2DBVLOGCHT3I7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q6ONHSFLNJM6KYKLTRCGWNZD","name":"Measure","sku":"209","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SO423DIMJ7N6UPWNATVBB5O2","item_option_value_id":"XXXW427NEA2Z6N7QJ7PFU4PF"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"T6WE7OPLC2GRY7CU6C53BT2W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q6ONHSFLNJM6KYKLTRCGWNZD","name":"Operation","sku":"209","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"SO423DIMJ7N6UPWNATVBB5O2","item_option_value_id":"CF2KVRREFL2JS47RA32OFZQ5"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"SO423DIMJ7N6UPWNATVBB5O2"}]}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"HRVNSCHW7B2XSLPYMWXEMYQA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Including see","description":"Yeah plan reason across. Step bar however season rise which.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"U3RE4YEBG4MREMZHAAKWJHPW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HRVNSCHW7B2XSLPYMWXEMYQA","name":"","sku":"420","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"ZZJWHRYE4ZMN3A2TPRHGISLN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Husband deep","description":"Recently perform measure whatever sell whole. Of election goal near.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"QWEW2GSD2KSW36QWCSFZIYJR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZZJWHRYE4ZMN3A2TPRHGISLN","name":"","sku":"1020","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"4CLJGNG2WBIPH45CM6FYIYMZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Eat fly","description":"Art store half modern war responsibility radio.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"DT2TZ5SRPZBLKY27FL6IOBNU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4CLJGNG2WBIPH45CM6FYIYMZ","name":"","sku":"552","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"BFPJNVWT42YKQSOXJTX652D4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Will house","description":"Case whether standard born either training their.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"5QNEDG64LYOTMHTYUDJNI5XO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BFPJNVWT42YKQSOXJTX652D4","name":"Think","sku":"929","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"K6SJ6NXGCN4QFPIJDXDFBMSW","item_option_value_id":"HWAP57SHWFYTC7OTUBYRMVKE"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"T77O2QHBWC32DIVPJ3DUTFYA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BFPJNVWT42YKQSOXJTX652D4","name":"At","sku":"929","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"K6SJ6NXGCN4QFPIJDXDFBMSW","item_option_value_id":"ELRDXYUTW4V54A5TUSY4M2NW"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"K6SJ6NXGCN4QFPIJDXDFBMSW"}]}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"UYMACWN57ZTHBRSV27FPRUMY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Management campaign","description":"Lawyer person father important usually lay.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"IZPKGR6XAYY7VS3MTBGGXFDV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UYMACWN57ZTHBRSV27FPRUMY","name":"","sku":"973","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"Q6M4I2IK6S5VWYGLCZ4M6MUJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Series despite","description":"Mr business tough recently ok address leader. Area risk they white study.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"CUNSA3JHYAIXC6NG7EDOIVNW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q6M4I2IK6S5VWYGLCZ4M6MUJ","name":"","sku":"293","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"VBZAF46CUHI4JPWBGFKIMCBM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Toward rather","description":"Protect Democrat build shake process structure force.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"STF5DDSFYPOMT3NIG5NS7WLE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VBZAF46CUHI4JPWBGFKIMCBM","name":"","sku":"858","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115809} +{"stream":"items","data":{"type":"ITEM","id":"4S6B5QAO7JSHNTBULI52Z33J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Page season","description":"Hospital ground generation response four hear draw again.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"BOW5WXRKIJW64YVH3BUZB2LF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4S6B5QAO7JSHNTBULI52Z33J","name":"","sku":"130","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"B4B6E7PDWQEFDLS6PHRKQJYG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lot character","description":"Matter on my bank us everybody newspaper Republican. Last would team view put.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"HLVDVWM7RUWGIYYKP25JX4YL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B4B6E7PDWQEFDLS6PHRKQJYG","name":"Company","sku":"156","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"GSIIGYURISDJ7252JBVOIOJY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B4B6E7PDWQEFDLS6PHRKQJYG","name":"Purpose","sku":"156","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"7IEME74WY37YI36FZWHL6BDO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Month republican","description":"Property actually already main left house.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"MYYSUCDME433D5Q7HBAMXT5T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7IEME74WY37YI36FZWHL6BDO","name":"","sku":"342","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"GJHC7MF74HRC5LTKR3BYP3QB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yeah run","description":"Pass Congress so memory another guy good. Door result size at body goal.","category_id":"BFCKICLCVSEXGP7XHJJBE5S7","variations":[{"type":"ITEM_VARIATION","id":"RJWPQBQ6IXHQVCHNOMHG57XC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GJHC7MF74HRC5LTKR3BYP3QB","name":"Office","sku":"796","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WLRWABLEG32O2YSEIX4TNZX3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GJHC7MF74HRC5LTKR3BYP3QB","name":"Wish","sku":"796","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"BGY6DW7TIGZPRSJ4LYB3UL43","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Another movement","description":"Thank move audience religious participant cultural.","category_id":"U3LNOICLR663X5RPZFWDTAFM","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"IJOAE5NHZKSCZJDRAO7KAUCK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BGY6DW7TIGZPRSJ4LYB3UL43","name":"Growth","sku":"1081","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"3LWL7H7Z3OXRAMRCDKWAW7D3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BGY6DW7TIGZPRSJ4LYB3UL43","name":"Option","sku":"1081","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"SILEEGZUOSJKJTD2S773ZSUX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"End serious","description":"Investment wall heart candidate plant. Magazine model good prevent skill.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"J3FLDPVUYFDI6GYTF2EN6TA2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SILEEGZUOSJKJTD2S773ZSUX","name":"","sku":"178","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"QVOZMX7A3FD7R7OAXCVNROTN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Threat happy","description":"Again over war include keep class.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"3ROQOLHGFVYOFYFFOHXLO6SR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QVOZMX7A3FD7R7OAXCVNROTN","name":"","sku":"778","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"AQDCNNLLW4YS2WKCZ7I6I7ZO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tough there","description":"Mention section term finally father education.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"THVEKNYG2LUNHA5G5GMSOWN7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AQDCNNLLW4YS2WKCZ7I6I7ZO","name":"Would","sku":"256","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WSPLPUX5YVL36A2TBERNZWS6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AQDCNNLLW4YS2WKCZ7I6I7ZO","name":"Entire","sku":"256","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"X5QEHLFXH4KQGLNFLSCCT65H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Her be","description":"Make through key scientist week choice. Edge audience story create bit.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"QKRLE5QUCJAORXGOYTTTYGW5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X5QEHLFXH4KQGLNFLSCCT65H","name":"","sku":"923","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"4YQUC7L7TE75OP4DKZCDAUBW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Physical organization","description":"Save only him resource eat hour how. Attack water movement me.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"OOXTR4EMM2AEKNZ5BBS7XZ7L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4YQUC7L7TE75OP4DKZCDAUBW","name":"","sku":"995","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"FFA2OT3RWTIYLUHDQ6ODVLCG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Though best","description":"Town American shake make. Method condition partner low listen.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"CKTVI5GGQQD5GTMVVGO4PULH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FFA2OT3RWTIYLUHDQ6ODVLCG","name":"Project","sku":"273","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":19000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"2TPVHHDKNYHOFTVTWXJIOCUF","item_option_value_id":"OKWJ4TU6JZE4PYVJLFA5764G"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"2Y5CNVHQHRYV7MTWGRFYDA6B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FFA2OT3RWTIYLUHDQ6ODVLCG","name":"Visit","sku":"273","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"2TPVHHDKNYHOFTVTWXJIOCUF","item_option_value_id":"PRVJVP2IX3MKIIYWK26HV5NK"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"2TPVHHDKNYHOFTVTWXJIOCUF"}]}},"emitted_at":1668290115810} +{"stream":"items","data":{"type":"ITEM","id":"WK34TDDS6MC57SKOL5A55RH3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Weight action","description":"Party particular how near offer class crime.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"LINJLO4SHLX6SQF5UHBJWGC7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WK34TDDS6MC57SKOL5A55RH3","name":"","sku":"500","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"2XOID2K2T5AD5NNDTE5MJSDE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Include evidence","description":"Between whose deal only scientist.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"HD3KCRQMN5ZT5NCTUIACNGWF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2XOID2K2T5AD5NNDTE5MJSDE","name":"Focus","sku":"729","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":23500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"MJZBHZNBUOC7IK3BC3NRYGKM","item_option_value_id":"JMIHHST4XERQNKMSAEHYJ6L6"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FVSYOTTIUKOPW5OXHLZQD33I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2XOID2K2T5AD5NNDTE5MJSDE","name":"Pressure","sku":"729","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"MJZBHZNBUOC7IK3BC3NRYGKM","item_option_value_id":"T5S4GWFKCUXOXGSEMRWBPAZ6"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"MJZBHZNBUOC7IK3BC3NRYGKM"}]}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"PLEUSOXLIRBTF4ISPB4OXTMR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Social shake","description":"Health character degree identify son. Why more season wind race.","category_id":"JTNCHZSCPGLXXJFE6S2SFFHY","variations":[{"type":"ITEM_VARIATION","id":"GBX44NONQT7A75W3FISFDCMF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PLEUSOXLIRBTF4ISPB4OXTMR","name":"","sku":"759","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"XRE37L7O7O6UYTJILIAH5VTN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thousand ask","description":"People issue knowledge positive. After high debate expert executive whole.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"AKLCCOJQODBIZJYZDZD7TODB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XRE37L7O7O6UYTJILIAH5VTN","name":"","sku":"830","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"QSQFXCUK6R73GWRHNCSBAIY2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Agent almost","description":"Particularly shoulder common single success shake.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"VW7QYHJA7CMQRKW7HNEL7QJR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QSQFXCUK6R73GWRHNCSBAIY2","name":"","sku":"1083","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"6CIWVJEGC7A42GDTW2BTB6XR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Put central","description":"Quickly lawyer seven. I article middle admit carry animal many present.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"H35OFJCMP3PKH5KRXJPVCRI7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6CIWVJEGC7A42GDTW2BTB6XR","name":"Father","sku":"177","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":1000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OERQP6O5RXZEDOH3TMRUBGMT","item_option_value_id":"5EZBFHGGNHLFFSHZ4DZMABKF"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WPPGNBVCHYFDVDHMWPJEYSK2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6CIWVJEGC7A42GDTW2BTB6XR","name":"Sense","sku":"177","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OERQP6O5RXZEDOH3TMRUBGMT","item_option_value_id":"2VXCUIN5V4VHMJVYOXSPA5ZB"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"OERQP6O5RXZEDOH3TMRUBGMT"}]}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"MWT4KMZXXF3C2X5LUP3NHRLR","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Argue other","description":"Not see field place thank model.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"SR2TP6W3TAIVT2OSL3EZ5ZMM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MWT4KMZXXF3C2X5LUP3NHRLR","name":"","sku":"197","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"Y7IMAZ334J7V5JI5PMXD4OY6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Speak hospital","description":"Tree fast spring north. Plant social artist war fine help.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"4DDH7M7H7WR4DM7FLRISDMXN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y7IMAZ334J7V5JI5PMXD4OY6","name":"","sku":"360","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"MCRQDCV6XRR6GGQOVYPUBDNR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Know interest","description":"Nice set true into best. Drive certainly try audience else.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"KFNPDWTFIIJ2OAFID3D5D6QZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MCRQDCV6XRR6GGQOVYPUBDNR","name":"","sku":"1052","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"RW5KAA5N4F7LZTCZYEMGH7DW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Increase citizen","description":"Performance form dream voice language nothing.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"PLIS3AMRXG73YZDONWGENCR4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RW5KAA5N4F7LZTCZYEMGH7DW","name":"Month","sku":"1091","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"5X6CMY2QS3JTI7SVDTEYRKL5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RW5KAA5N4F7LZTCZYEMGH7DW","name":"Assume","sku":"1091","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115811} +{"stream":"items","data":{"type":"ITEM","id":"SJ6GUUOVZMCQJ6ZXPHGWUZHV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Will job","description":"Power dark staff above policy future.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"HCDDXC6YEF6RZ6BHNIJPO7IR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SJ6GUUOVZMCQJ6ZXPHGWUZHV","name":"","sku":"534","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"UHK3YUBRKN5XBPMJHQ6VGCYK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Participant after","description":"Contain program your degree oil bar fact over.","category_id":"TDZ6FKYRVGTDW6RD46JVF4JA","variations":[{"type":"ITEM_VARIATION","id":"LC26HPAASI7Q6TLKNFWWPWLD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UHK3YUBRKN5XBPMJHQ6VGCYK","name":"Throw","sku":"706","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JZR74ZD5NVZTHOMXMVHBAYFI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UHK3YUBRKN5XBPMJHQ6VGCYK","name":"Project","sku":"706","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"FLFD2TYZQISVPD74UWSEM25I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rather arrive","description":"Smile several economic sense but religious may discuss.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"4RSXGYWNN2ZVNK374YCQ7BKL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FLFD2TYZQISVPD74UWSEM25I","name":"","sku":"928","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"LTYT2GBNTNNSWIYU2LFEM2CY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Board option","description":"Movement painting wrong property determine purpose nice.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"XNIUYVLSOAJ7CAG2JWTL5OTM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LTYT2GBNTNNSWIYU2LFEM2CY","name":"","sku":"138","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"N3L2DSAPL5L4Y2HUBZ3OJPNW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Study writer","description":"Learn stay teacher prepare bed skill. Husband yet blue dream reason western.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"MA5TZDUTLSWA24ME7OEMWQIX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N3L2DSAPL5L4Y2HUBZ3OJPNW","name":"And","sku":"345","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"BZ7GL2INUUTO2K5TMB7PXM53","item_option_value_id":"S2AZHUJWRVXEXZA5FYFPUU7Q"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"J5HFW4LZJX3V7EGT7S36OXCJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N3L2DSAPL5L4Y2HUBZ3OJPNW","name":"Commercial","sku":"345","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"BZ7GL2INUUTO2K5TMB7PXM53","item_option_value_id":"ZXWDPAWLSHWJT5GL3RHEWQ34"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"BZ7GL2INUUTO2K5TMB7PXM53"}]}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"G6IPNW77FJDGXFTDWI2NZ7DO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Month determine","description":"Rather thank before theory leg chance off population. Exist place return just.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"3N5BZZ5W6V4WN2QVIBXQHWDC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G6IPNW77FJDGXFTDWI2NZ7DO","name":"Seven","sku":"346","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"U4KBGO2CU3OVLMMMMRAUX74P","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G6IPNW77FJDGXFTDWI2NZ7DO","name":"Enjoy","sku":"346","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":1300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"V7BHVEZQXJFZA2TGXBR6GJDZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rather religious","description":"Watch audience realize across avoid street.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"YOURXY34P2XGKPEMHVR6HDIF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V7BHVEZQXJFZA2TGXBR6GJDZ","name":"Area","sku":"461","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"AAXVMOJNFFLK6XGPLLY6DHYH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V7BHVEZQXJFZA2TGXBR6GJDZ","name":"Southern","sku":"461","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"J3CWKKNH6GGVXO5CG7SFFCV7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Dinner hand","description":"War six science create. Operation such sell sign.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"TOBCYHW4G4ESTZH67OZGAJVT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"J3CWKKNH6GGVXO5CG7SFFCV7","name":"","sku":"547","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"DQHLRMQJIPH6OZKNJ7TR5WYV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Couple admit","description":"Bank least share eat trip. Identify shake issue nor.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"BVWP5KOYEJYQLJUX52BY6QZZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DQHLRMQJIPH6OZKNJ7TR5WYV","name":"","sku":"374","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"SYEF5FXCWTECMBM42CHJHYGQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Protect situation","description":"Third order meet same. Particularly better writer we budget.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","variations":[{"type":"ITEM_VARIATION","id":"2X6NTFGFETV4MS3G6MTJN3FY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SYEF5FXCWTECMBM42CHJHYGQ","name":"","sku":"520","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"G2ZATOKORYHRYBZ2OSRNKURW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Brother soldier","description":"Thousand court major natural person spring organization.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"S6HSQTRKR3BJM6HYHBG5HKLP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G2ZATOKORYHRYBZ2OSRNKURW","name":"You","sku":"716","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"MY4ATANUJ76VCTSBT5RWARGB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"G2ZATOKORYHRYBZ2OSRNKURW","name":"Part","sku":"716","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":10500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115812} +{"stream":"items","data":{"type":"ITEM","id":"KDJOIYUMO5633HVGWHFY5DKI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Everybody view","description":"Training field future mean bit stop. Nature mouth investment fear dog.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"WAWC3R6EPZDHL7IE55PCFO35","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KDJOIYUMO5633HVGWHFY5DKI","name":"Water","sku":"1096","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"3I3OZVYDPXM4YO6G7ZX7J4F3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KDJOIYUMO5633HVGWHFY5DKI","name":"Top","sku":"1096","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"JNJZXJLPPTIS45YQBJU4PORS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Dinner when","description":"Skill particularly back but be respond put. General condition add own.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"V2ZUBGYH3TS3YSEMUMY6D753","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JNJZXJLPPTIS45YQBJU4PORS","name":"","sku":"630","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"6OR4HMVM3HUXGZ2Q2DZTKTUB","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Above travel","description":"Form what out eat Republican food compare. Program tell only heart.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"TFYHXYQ2J7NSAZOEEJ3KR5L4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6OR4HMVM3HUXGZ2Q2DZTKTUB","name":"","sku":"978","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"B5Z7A57RPLRJDF33QK4DEDVH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Step when","description":"Drive like question scene he old just. Behind a head suddenly instead increase.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"DEAFLFHVQVW4YHU77LXQLPBV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B5Z7A57RPLRJDF33QK4DEDVH","name":"Main","sku":"981","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"22UDFXUQ2XESWLYESU62T3PS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B5Z7A57RPLRJDF33QK4DEDVH","name":"School","sku":"981","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"PYA5GOESKPPHDYLD4NCHJJMH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Think service","description":"Language already plant spend. Stock under study off set why.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"A7TREQ53HOELNTIWIB3L2ETG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PYA5GOESKPPHDYLD4NCHJJMH","name":"","sku":"1080","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"MQ25PUOPQPTDSNBYLRFQVV3Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Party too","description":"Hold even second author effect various.","category_id":"G254DMXKLHIMCDXBZM6GZSPW","variations":[{"type":"ITEM_VARIATION","id":"P4NHJQ4IOVJN5HT6AD55XO5H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MQ25PUOPQPTDSNBYLRFQVV3Q","name":"","sku":"110","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"M7SIBVX55Y6JL47SOVBVQUZX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Arm camera","description":"Trial for place realize forward service.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"5LSOQZRZAVKG6572TFHIFWHH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"M7SIBVX55Y6JL47SOVBVQUZX","name":"","sku":"324","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"VVPPAYXLX632BS2UHVCZRIRR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whom by","description":"Community also gun back strategy.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"DSQXJ2ZP2PN2TCSPJOUTIOOW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VVPPAYXLX632BS2UHVCZRIRR","name":"Data","sku":"431","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"J5ZDE3WNIQH5NJBHFSH4OONP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VVPPAYXLX632BS2UHVCZRIRR","name":"Benefit","sku":"431","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"SWTSP7ZZRFFIUVXWS3JVKQW4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Develop enjoy","description":"Before movement million form of trouble officer.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"IWMYJB6MIZRCYCGIHYDXLOQV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SWTSP7ZZRFFIUVXWS3JVKQW4","name":"Person","sku":"456","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WFYBMACAFQL2E46DXBNVWTEC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SWTSP7ZZRFFIUVXWS3JVKQW4","name":"Chair","sku":"456","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"2ZOO2UW2GJ3ICC2YQTJ35AXK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Describe history","description":"How bad mind want policy fact. Visit half from her with out sound.","category_id":"ZYWOYLITHWQVBKFWPPEBORLT","variations":[{"type":"ITEM_VARIATION","id":"EVPDQRBO5I4SEJ5TL6BVHHGE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2ZOO2UW2GJ3ICC2YQTJ35AXK","name":"","sku":"467","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"LDEJYZFYOC4BLOYXIZYBQUKB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hotel process","description":"War into wish. Next threat instead throughout.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"KSPAA36SOVZBFDECEYQ2UBD6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LDEJYZFYOC4BLOYXIZYBQUKB","name":"State","sku":"601","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"MUIGOP5MAB2YMTKYLGBNJDFQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LDEJYZFYOC4BLOYXIZYBQUKB","name":"Official","sku":"601","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115813} +{"stream":"items","data":{"type":"ITEM","id":"OSF2MR3RTGVTIRRRYQ6BH7TF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Determine claim","description":"Recognize indicate again main everything. Window speak worker apply sit.","category_id":"GND3JALLXGURYRKK733QENFP","variations":[{"type":"ITEM_VARIATION","id":"FGSICXUBV3CGVYYXSZ2PT4OE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OSF2MR3RTGVTIRRRYQ6BH7TF","name":"","sku":"648","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"EYU7WGIG7F5LJISGVEWNEDLR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Up citizen","description":"Kind drug our base learn ever meet perform. Size begin many.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"ARFP3C5FIOUSUVAB2XIBIU3O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EYU7WGIG7F5LJISGVEWNEDLR","name":"","sku":"235","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"AGJ3TTD7D2ESO6SJPNYSPATY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Standard carry","description":"Produce experience performance somebody.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"RTEEKYORUUVXYPHLOU7X76K4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AGJ3TTD7D2ESO6SJPNYSPATY","name":"Section","sku":"241","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FMZSXZE24FOKYGXCSTVD3MEH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AGJ3TTD7D2ESO6SJPNYSPATY","name":"Scientist","sku":"241","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"6ZID3JEGFBKLBS7SMQ7KOHUQ","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Answer trade","description":"Few list writer fast center remain.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"M7XHPHMMDOTODTXV4BXBSGSJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6ZID3JEGFBKLBS7SMQ7KOHUQ","name":"Left","sku":"265","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":23400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OAOHJN2QJZN7EDGNC2HKUJTH","item_option_value_id":"QNSMUYFTCTESVQSVURZV2TT7"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ELVVECZSIDZXSTFKAGJUM6QJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6ZID3JEGFBKLBS7SMQ7KOHUQ","name":"North","sku":"265","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OAOHJN2QJZN7EDGNC2HKUJTH","item_option_value_id":"COCBXTYML62OH7VLBEGCSB5G"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"OAOHJN2QJZN7EDGNC2HKUJTH"}]}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"AIKEUQUFQNVNKXBAQXD534P6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Teacher compare","description":"Surface the project goal tree cup it.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"4K36EX6RYIRSHWIWHDOTRSQL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AIKEUQUFQNVNKXBAQXD534P6","name":"","sku":"904","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"GUBKLYC5ERV7YXFJ53RVDH2D","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Though federal","description":"Game detail lead network. Right others second involve support.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"E5FVO6RQWW6A2WUU3CM4X2TJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GUBKLYC5ERV7YXFJ53RVDH2D","name":"Wrong","sku":"956","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7522DLIDGBGVGIUXTOHMPP5S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GUBKLYC5ERV7YXFJ53RVDH2D","name":"Pressure","sku":"956","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"PQR6OXOTVBM6HIESREFCIWJO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Field interest","description":"Dinner rate continue push. Avoid movie determine.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"D2CWBHECQBH6H4OSS6OWLICJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PQR6OXOTVBM6HIESREFCIWJO","name":"Degree","sku":"1097","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":29600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"4BE2LJK5J2OPCVKAWWOF5FYL","item_option_value_id":"6NCZVT2ENRUUZV7BQFOKBGBJ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YEZ45AYPDYNAD6HEWNTLECOO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PQR6OXOTVBM6HIESREFCIWJO","name":"Baby","sku":"1097","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"4BE2LJK5J2OPCVKAWWOF5FYL","item_option_value_id":"TF52OO2BUGBC5LAIPUM3YXYE"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"4BE2LJK5J2OPCVKAWWOF5FYL"}]}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"JBFX4IOAU7J2AWKHBR7Z6RSS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"You i","description":"Standard sea play suggest election. Social especially suffer daughter.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"YWPCXJALNH4BHI2EEDYPUD6J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JBFX4IOAU7J2AWKHBR7Z6RSS","name":"","sku":"192","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"RUOPEL3SCFYPERGAMJTRF4WQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Do perform","description":"Agent wrong production. Government experience past.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"KZZF7NEH3ZGTNDF5C5XUHOFK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RUOPEL3SCFYPERGAMJTRF4WQ","name":"Station","sku":"996","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZE27KNFHVUZMDIQ7FECKORG5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RUOPEL3SCFYPERGAMJTRF4WQ","name":"Already","sku":"996","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"VCSFOWPA6XKVQEOPEPXQU7EL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Line occur","description":"Weight among show guy later young door about. Not mother reason election.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"CTFSQ3OT5SDMTMTO3PQRRYH4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VCSFOWPA6XKVQEOPEPXQU7EL","name":"","sku":"190","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115814} +{"stream":"items","data":{"type":"ITEM","id":"MNWVG7U7KERFCCRF2FFRVWZY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Care send","description":"Skin factor life nor recent. President thus myself green than office.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"CIEB43CWAJYW626I5OPSJU4C","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MNWVG7U7KERFCCRF2FFRVWZY","name":"Each","sku":"211","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WMRXFPOJCA7TWDCVPOGVTGLA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MNWVG7U7KERFCCRF2FFRVWZY","name":"Street","sku":"211","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"QEIQCH6HHXJN34GDMK2QEYLO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tough simple","description":"Pressure from little. Too look stop seat thank. Rather its add kind.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"FMRKDRE6FKXNLJGJOTG6TDZ6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QEIQCH6HHXJN34GDMK2QEYLO","name":"","sku":"482","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"ZUH64QBLKGYX2ZZJCH2WMKKC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Its manager","description":"Price political away direction compare law which.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"GXT3T6BS7SPF63TAGXO342XS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZUH64QBLKGYX2ZZJCH2WMKKC","name":"","sku":"564","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"2222SHWIISTH7MW52B7UZCXY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Describe us","description":"Eye theory three police. Air picture low about amount.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"ZULI2Q26VL3PL2V3KC32JBK6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2222SHWIISTH7MW52B7UZCXY","name":"","sku":"670","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"SBURKU4AQWNYZDXVS7XFO3NC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Age reflect","description":"Plan family father. While herself because cultural bad southern.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"YK4PILIGZWQIEV5PJH6P7BJF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SBURKU4AQWNYZDXVS7XFO3NC","name":"","sku":"767","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"TQ4YOOGZDOQVAMOSWG7MEGFV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Interview experience","description":"By issue commercial similar position themselves.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"Y76XZER3Y6VGN3YMOVP5CQRB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TQ4YOOGZDOQVAMOSWG7MEGFV","name":"","sku":"789","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"AKSOAILQAWBR34OLWZ23VIUU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Present field","description":"Call stock experience treatment north family tree. Debate time hair clear.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"WAAOD2BWVEW6V3XJLIXCDXEQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AKSOAILQAWBR34OLWZ23VIUU","name":"","sku":"343","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"AXWCZPVVKCITZKHF63562WOV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Music performance","description":"Accept participant morning structure region keep always.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"U5EGVFJSOTATJ5XSLMVFYVMY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AXWCZPVVKCITZKHF63562WOV","name":"","sku":"407","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"HVEWVVTVWWFDM73KLNWF6NCN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wait really","description":"Laugh wear action let. Occur southern plan responsibility. System fact event.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"LE342GJFW44377HMIS4DJA3Z","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HVEWVVTVWWFDM73KLNWF6NCN","name":"Build","sku":"545","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":5000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"VKLZXN2OGSRD5IAJA2WATOUS","item_option_value_id":"3OCYLE63C3RK74CBXXYIZL4T"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DT2EOB4DUO3AG4BHKDCVMQT3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HVEWVVTVWWFDM73KLNWF6NCN","name":"Meet","sku":"545","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"VKLZXN2OGSRD5IAJA2WATOUS","item_option_value_id":"257KZMUQYFEPRXP6RWSWUEVV"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"VKLZXN2OGSRD5IAJA2WATOUS"}]}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"JUCVRBZ35JGKZLMV2FMRUWZM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Base red","description":"Expect most middle study nothing.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"LL6QVKTFSA2D6HKVQ4H75HW4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JUCVRBZ35JGKZLMV2FMRUWZM","name":"Account","sku":"969","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":9400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"FUGH4VFXEDFBZIS2EXCZEPD4","item_option_value_id":"YE2ECPQYUUIYFXW4LPDNZQPN"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"B6GI67ZDPCYJ66LTVNPSNGS7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JUCVRBZ35JGKZLMV2FMRUWZM","name":"Consider","sku":"969","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"FUGH4VFXEDFBZIS2EXCZEPD4","item_option_value_id":"B6NXN724QAYTNHCUZBMEWKVY"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"FUGH4VFXEDFBZIS2EXCZEPD4"}]}},"emitted_at":1668290115815} +{"stream":"items","data":{"type":"ITEM","id":"7KKGD755BSN2VK7HVELL6H73","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Threat white","description":"Total man film less what. Cost vote easy score whom one. Often stuff short.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"KYLDSOGRBM22WQ3IFAIA4GSG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7KKGD755BSN2VK7HVELL6H73","name":"Consumer","sku":"1057","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":4200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"D3UMOWXLKJR5FSW4FERSL33D","item_option_value_id":"Y666FNOKWWXUXSFSBGQ2AARX"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RUADM72VT2Z3IN665HSFYJAO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7KKGD755BSN2VK7HVELL6H73","name":"Soldier","sku":"1057","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"D3UMOWXLKJR5FSW4FERSL33D","item_option_value_id":"GJZRSGOX2GVH7Z4HLFPEBUIK"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"D3UMOWXLKJR5FSW4FERSL33D"}]}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"7ADGFIAC3PCU3OEZQAAAPHWX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Nearly though","description":"Age door across this medical job charge. Campaign offer political like.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"2TGSG6ZIKD2A42UAVAXTWQWT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7ADGFIAC3PCU3OEZQAAAPHWX","name":"","sku":"672","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"SN4NVP75O2KDCJBKD56Z2Y6C","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Force mouth","description":"Treat away everybody near surface. Could investment doctor condition.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"XNNXHQJN6IAJEZMA6VDFQII2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SN4NVP75O2KDCJBKD56Z2Y6C","name":"Right","sku":"836","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WLYHJL534OHXI33BB2234GDL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SN4NVP75O2KDCJBKD56Z2Y6C","name":"Manager","sku":"836","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"LBMJ3YGMD25HN2XAVRM75INH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Into local","description":"May visit certain by news. Customer heavy popular kind book serious white.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"KASRES7VZUO7CXCEDUDNXZKY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LBMJ3YGMD25HN2XAVRM75INH","name":"Alone","sku":"976","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"T55BMT2ODJU564B7NDC4NFMC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LBMJ3YGMD25HN2XAVRM75INH","name":"Strong","sku":"976","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"PCQSJOVKCNPOCRTGKDXQQYNQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Well senior","description":"Early with woman talk term contain person. How price pay coach trip.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"IG3KTBDL3M2VYGVL6NRUKNGI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PCQSJOVKCNPOCRTGKDXQQYNQ","name":"","sku":"1035","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"CE5UBE47STVF3TKEJAHCQTP2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Me film","description":"Tv color team year serve reveal.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"VHBPJUMGFM76WAEA7AQSR7KL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CE5UBE47STVF3TKEJAHCQTP2","name":"","sku":"1048","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"Z4EEJZH3FUMBDZNHCFJYATPB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mention truth","description":"Find court attack other half imagine.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"CI7RJ7ATCVGFV4K6YGBOYPBZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z4EEJZH3FUMBDZNHCFJYATPB","name":"","sku":"123","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"F2FRHUJEWYR4NXBSO62DKGE7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"What study","description":"Majority century war affect. He go society.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"QQQBF5SB76DJWTUHHU2POIDT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F2FRHUJEWYR4NXBSO62DKGE7","name":"","sku":"495","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"SFDGM5LRPPKGRQZJRDGNKWX7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Name know","description":"Book than bed father ever various argue. Boy off civil leg.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"V5KDBW35ODYAFJZK6XIZT2OV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SFDGM5LRPPKGRQZJRDGNKWX7","name":"","sku":"579","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"QGLL3DIVHOBH6H2IF6UGO33F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Meeting impact","description":"Heavy cost by attorney lay back century. Enter trial compare.","category_id":"QBSUPAQFPTUWP5USD3DHVSR7","variations":[{"type":"ITEM_VARIATION","id":"P2WQFCPUAEH6DTNTG7EVIXKO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QGLL3DIVHOBH6H2IF6UGO33F","name":"","sku":"628","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115816} +{"stream":"items","data":{"type":"ITEM","id":"AYXM6EZ43YPOGRMDTFBLUGCN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Two research","description":"Board peace fight final current. Seek option hot range deep.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"J23YO3NYOJRPTXW3UURSGCJQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AYXM6EZ43YPOGRMDTFBLUGCN","name":"Receive","sku":"945","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"TW4IWBHQV3UXZYZ4CGL37FVV","item_option_value_id":"Y63ITCLUT4GAHTP2NCESZHKZ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"XJXQHQHTSDA5FF6XRAQFHHMS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AYXM6EZ43YPOGRMDTFBLUGCN","name":"Travel","sku":"945","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"TW4IWBHQV3UXZYZ4CGL37FVV","item_option_value_id":"Z7BYKX3HNUCCNHKGOMH65TXC"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"TW4IWBHQV3UXZYZ4CGL37FVV"}]}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"JRGBEXZHJW5TIPTTAOIN2NI5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Road word","description":"Blood necessary against production. Student ever decision lay white.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"O7FCQEN4QBUUVQ4WJCVOAKPH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JRGBEXZHJW5TIPTTAOIN2NI5","name":"","sku":"1054","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"C2OUUWSMISGR7ZNGGNUTNGEJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tough issue","description":"Visit degree car road adult right man. Body its price learn.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"GM5AMPEBQSWUQFGKP4YKHHRK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C2OUUWSMISGR7ZNGGNUTNGEJ","name":"","sku":"277","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"PUVMLZ3HKRCFJV7CIQ24POTZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Discover pull","description":"Age off fall day art tough. Design training throughout everybody in picture.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"QJV4NLJGD5G2VKJM573AQQ66","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PUVMLZ3HKRCFJV7CIQ24POTZ","name":"","sku":"803","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"6JNTC5QQRDMVUUR44SW55JHB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Safe party","description":"Population role range north. Finish close minute pull seat.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"F7F2VGZQWCOUTO7J2PINNXCN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6JNTC5QQRDMVUUR44SW55JHB","name":"","sku":"1010","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"6N6PPPYZPWJWRLTEXYJKAEKV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Scene computer","description":"Future read right state project. Discuss popular book section store amount.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"5TJ6WNSYI6MDMQN4AK2ZDTZS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6N6PPPYZPWJWRLTEXYJKAEKV","name":"","sku":"204","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"AGRXJBE6Z4QZUURUUY6KBUMF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Help once","description":"While ahead federal various explain board citizen. Let fire race.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"FZDPA4X5FVSSNFX7LAIHBXD4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AGRXJBE6Z4QZUURUUY6KBUMF","name":"Person","sku":"305","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":14600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QYNVMZMUU37LDKWQCD6W7WFU","item_option_value_id":"VELAB64HZ5LGN7NIYQK54O3Y"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZLTD7JVHVA2MDBDZ3RHFNXI6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AGRXJBE6Z4QZUURUUY6KBUMF","name":"Discussion","sku":"305","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QYNVMZMUU37LDKWQCD6W7WFU","item_option_value_id":"NTK7C4SJDN76KUZENL2RVDOK"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"QYNVMZMUU37LDKWQCD6W7WFU"}]}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"23WJ3UFAAS2SSTIEB5I7HWHA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Trip response","description":"Those eight sister feel region. She toward particularly with his court song.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"PBIECOULDXJLC5ZKH52VVSUK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"23WJ3UFAAS2SSTIEB5I7HWHA","name":"","sku":"780","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"FWT2SSXZS5GTJLENL46FK7HT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Edge speak","description":"Bank too purpose. Plan country threat event.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"J6SIJL2MGBTANHWDKH2QX7NK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FWT2SSXZS5GTJLENL46FK7HT","name":"","sku":"1063","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"63XI2QZL5P3ENKIRFBP3L7WB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Letter manager","description":"Party little rise message should reach study near.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"A5UGIGOHXBJ766CX3JFSERWO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"63XI2QZL5P3ENKIRFBP3L7WB","name":"Plant","sku":"953","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":16800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"EALBICYWBTQ72AMX4Q4Z6Q3W","item_option_value_id":"A6IV5SAZI246PRJCUZZPSFXO"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LZGPMUP3I4MZOX63R2MLP2R4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"63XI2QZL5P3ENKIRFBP3L7WB","name":"About","sku":"953","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"EALBICYWBTQ72AMX4Q4Z6Q3W","item_option_value_id":"ZTPFWZCOHVMDLZ7V426WKRKI"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"EALBICYWBTQ72AMX4Q4Z6Q3W"}]}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"TAHJZASTDRGDHTIGGY77MCQQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Company act","description":"Enter than industry take. Well thing sing seven ten human.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"TFCOHJY3MJXVYA4GPJXXEWFV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TAHJZASTDRGDHTIGGY77MCQQ","name":"","sku":"142","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115817} +{"stream":"items","data":{"type":"ITEM","id":"DV77XLO3PMPFUS54SOVFOJFT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"None blood","description":"Painting sit school what chair. Anything capital action else able action guess.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"A5VAYFXMP6EFEBH43TNEWT75","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DV77XLO3PMPFUS54SOVFOJFT","name":"","sku":"290","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"TSAMD4DHSAGYQ6ATCVETHI5B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Six grow","description":"Serious enough hair piece they. Within you clearly.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"UHECFP5L6OJI7E2SFRLWUSLR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TSAMD4DHSAGYQ6ATCVETHI5B","name":"","sku":"314","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"LZW4XWFRGQC4PIMQRC3CTJNA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Truth adult","description":"Discover hour together perhaps.","category_id":"3RDZ6OR3SZG52QSOUHHYV3AN","variations":[{"type":"ITEM_VARIATION","id":"Q7PKA64LD46FTNPBMB7RML7N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LZW4XWFRGQC4PIMQRC3CTJNA","name":"Pressure","sku":"321","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"Z4CHXWSYR7L4GTM2JYXY34RS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LZW4XWFRGQC4PIMQRC3CTJNA","name":"Investment","sku":"321","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":9800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"FRLYC65FLYCNPWTUWKXJQKQY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Myself outside","description":"Grow sit up same. Budget into door fish it quickly we.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"VZ52PAEHONTPR656HM56HIPG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FRLYC65FLYCNPWTUWKXJQKQY","name":"","sku":"540","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"FJDUVG7HXGLKWIOELRE25OAT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Risk lead","description":"Summer feeling staff per. For customer guess reality alone.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"66V7LESXXMDEWHF4AKMY3VLV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FJDUVG7HXGLKWIOELRE25OAT","name":"","sku":"542","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"FSLUCXTZJIFFXYQAKKP5GKCU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Report sell","description":"Attack listen moment. Budget traditional safe.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"4ALBPJOET2VQURXSEAHXW3LM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FSLUCXTZJIFFXYQAKKP5GKCU","name":"","sku":"218","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"YRXLBFSSOIPLZEWWBQ6YF5KR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Left price","description":"Also choice here accept kid clear wrong. Bed campaign benefit save.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"PXY7DZDLD3PO62JS2UYRXAT3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YRXLBFSSOIPLZEWWBQ6YF5KR","name":"","sku":"555","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"3632XX5UWU5DDOYZMVNFOWGV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Design goal","description":"Pm agree security pick cultural respond walk true.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"TXLZ74NK5SYYWZH7ZLNMMZXU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3632XX5UWU5DDOYZMVNFOWGV","name":"","sku":"783","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"5RB42IBXGSYSMU5OQ35A247Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tell include","description":"Claim visit page style visit. Life security much life degree rule.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"BSN6R7FSJRLRAR6EJPZ6BZ7A","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5RB42IBXGSYSMU5OQ35A247Y","name":"","sku":"230","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"YLXMMV3IWIJYDCH47AAHZPNK","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Area pattern","description":"Everyone listen product wall.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"G5T6WTDMRERXSUXR7XW4GFHL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YLXMMV3IWIJYDCH47AAHZPNK","name":"","sku":"514","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"HY6M7FI4HXBD635NNMTYFXXR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Garden continue","description":"Onto argue who significant success bad remain follow.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"IZBXGIXWX4XWAHK5IZFI4DHY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HY6M7FI4HXBD635NNMTYFXXR","name":"","sku":"1039","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"55HUNDTVFAMSZPNVRJDXOUGN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Main could","description":"North on after last popular. Five still girl theory.","category_id":"M4BCTLQC3J5YNAEWBVBR7NKK","variations":[{"type":"ITEM_VARIATION","id":"HRXQ3B453XH22LDNDTKR3H25","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"55HUNDTVFAMSZPNVRJDXOUGN","name":"","sku":"400","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115818} +{"stream":"items","data":{"type":"ITEM","id":"IRGIBKGKVV53XM4PXMVSXXPE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Box risk","description":"Writer yes yeah. Simply walk its east. Candidate ground blood expert.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"5DCSNJUEKYDAKPXJVEIUHBKL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IRGIBKGKVV53XM4PXMVSXXPE","name":"","sku":"740","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"43DWQB7OVTKRJ6XN4DWP5MJH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Politics measure","description":"Wish article within.","category_id":"HQ6ICDNDBSWDTR4SGCJE3BSH","variations":[{"type":"ITEM_VARIATION","id":"4GLUBYGOQSNPRF2SI5S72Q6Y","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"43DWQB7OVTKRJ6XN4DWP5MJH","name":"Speech","sku":"1001","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"MB5HX34EMEUAHIJM5T3NBNA4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"43DWQB7OVTKRJ6XN4DWP5MJH","name":"Upon","sku":"1001","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"52LIH325OSM2ULRK2AAYRFUD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Marriage other","description":"Assume film want theory or respond. Professional director girl future hotel.","category_id":"HZCT7IQM2RQBS3V3AXXO3XNC","variations":[{"type":"ITEM_VARIATION","id":"76DLEC2KCCW7KYAE4KONC3OH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"52LIH325OSM2ULRK2AAYRFUD","name":"","sku":"194","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"CGGRW53FAB5HGZYQ7O67DWLE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Here exactly","description":"Every create rule shoulder analysis. Professional score inside door per.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"JXE4VVHZ7D2B765UADE7EQ7V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CGGRW53FAB5HGZYQ7O67DWLE","name":"Pull","sku":"526","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TYRZPINOW5VJLPVTK24NSXAE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CGGRW53FAB5HGZYQ7O67DWLE","name":"Cause","sku":"526","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"B2465WAB7IUYK4Q74A7DMOQH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Month control","description":"Care expect risk personal. Yeah relate police enough film.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"7IS55HBCDBR3IMXQ4FIXKXPG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B2465WAB7IUYK4Q74A7DMOQH","name":"","sku":"189","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"V5LCM2LIEWPAEIFIYXDVE53T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Free pressure","description":"Operation scientist then can run student by. Data air special set.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"FMLII6M5VLAEAUPFT46ZSBBC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V5LCM2LIEWPAEIFIYXDVE53T","name":"","sku":"747","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"HZHXYPFKHS3SFJTV4KPEVT7S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Training drop","description":"House doctor pick work southern remember late.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"DW7PK33IXLH74MZDPGBEQX7G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HZHXYPFKHS3SFJTV4KPEVT7S","name":"","sku":"215","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"V7AT5HDT2WSTWOU54Q2DEZ7E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Follow plan","description":"Number travel instead tax consumer knowledge need. First film us strong.","category_id":"RE7VE3AUXBTW57TODIHFLM4C","variations":[{"type":"ITEM_VARIATION","id":"GNR3IPO6WEUGGA3I3GYLGAJN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V7AT5HDT2WSTWOU54Q2DEZ7E","name":"","sku":"317","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"3VC72H2SKWMUJZT3CZMKROVX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Chance unit","description":"Receive candidate development people.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"YHKMPCFP27T3RB6ECQXZKPW5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3VC72H2SKWMUJZT3CZMKROVX","name":"","sku":"720","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"GBVNNVVW33RW4A7F24FHIK6F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Man tv","description":"Last purpose recently outside. Such himself focus meet.","category_id":"NC7RMZ5L7KR262JLJVJTWBDY","variations":[{"type":"ITEM_VARIATION","id":"4TEW5XHRZYQGE6G3JIQRFF3J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GBVNNVVW33RW4A7F24FHIK6F","name":"Forget","sku":"881","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JDVGOZBQRQHNGT3WHF2EM6DP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GBVNNVVW33RW4A7F24FHIK6F","name":"Carry","sku":"881","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":30000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"JGFCMJFNFR373YB3BYGPL3MS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Choice per","description":"Actually program also appear page kind. Hard front last someone eight child.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"H62JIEOZMS72DQZ6JQRJRPBP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JGFCMJFNFR373YB3BYGPL3MS","name":"","sku":"992","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115819} +{"stream":"items","data":{"type":"ITEM","id":"GHANZOOOUZC4ZVFNC3DBEFAO","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Actually while","description":"However provide I station similar.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"6MKYLGNSR5GTGO4CHVW5KB5L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GHANZOOOUZC4ZVFNC3DBEFAO","name":"","sku":"1029","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"6IZ54GP6BF75GAB7D6D7GGSU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Message system","description":"Perform free everybody. Member name subject ground community rather culture.","category_id":"TUL443L6U3PZWWUDSPRQHAQU","variations":[{"type":"ITEM_VARIATION","id":"Z2THZU3EWFWV3F7JOJL26BPF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6IZ54GP6BF75GAB7D6D7GGSU","name":"Hard","sku":"676","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"4LFCEBRNDSRQLVQN72XY3I7H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6IZ54GP6BF75GAB7D6D7GGSU","name":"Sense","sku":"676","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":12700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"WGI3JYGLM4CKZU352YCNYDYG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Alone or","description":"Very strategy claim. Face agency night though camera.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"4ZB4KE3UZCMDWVPHKYUSRU7T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WGI3JYGLM4CKZU352YCNYDYG","name":"","sku":"368","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"BL2HSFX6AGSD7ULIT6IL7TH2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Help contain","description":"Image man work end structure market. Fall big four easy smile.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"5QZQCM6J34KWYGUOZBOX2Y36","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BL2HSFX6AGSD7ULIT6IL7TH2","name":"","sku":"948","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"Q3HBGJEPCNYJKIMRQ34TZXRR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Simply executive","description":"Up dark start some. Practice until sport camera treat establish store.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"IZHIQL7CD3ELYBBNIHXM6XAG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q3HBGJEPCNYJKIMRQ34TZXRR","name":"","sku":"1014","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"I7TCSDTQVUVEA3YWSHBFHH6L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Over piece","description":"Bit beautiful tend professor chance food.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"GBIZJWUNKUQQEBYXJQ6RULEP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"I7TCSDTQVUVEA3YWSHBFHH6L","name":"You","sku":"113","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RXV6JUS66EVMFMTJQO7BAYKP","item_option_value_id":"YJZUBCPS4E42OH44SWVYC366"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"N4VHFSOCNBHXAERRYZ3PN2G4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"I7TCSDTQVUVEA3YWSHBFHH6L","name":"Special","sku":"113","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RXV6JUS66EVMFMTJQO7BAYKP","item_option_value_id":"YNDJS557VZWE5SXLLWBB5EPK"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"RXV6JUS66EVMFMTJQO7BAYKP"}]}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"EQBUDL5MULNMEXWFVTCEZKBY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Exactly campaign","description":"Meet officer color modern. Tv second despite capital shake.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"74GABK6O4ZXPR54OL3OKBTY3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EQBUDL5MULNMEXWFVTCEZKBY","name":"","sku":"570","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"3KGO5HLYXUN3LUGXEVHUZK2H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Either city","description":"Both how teacher appear play personal cup despite. Decision crime short them.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"YYGV5XSB3NDBJWHT2K23GBVF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3KGO5HLYXUN3LUGXEVHUZK2H","name":"Then","sku":"766","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DVH34OKXPRV2DHTOHSGQDDQM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3KGO5HLYXUN3LUGXEVHUZK2H","name":"In","sku":"766","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":21200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"IDMCRNTSXURL36WECECFMTVL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Generation wide","description":"Either window enter as final hard wind. Cup purpose thousand food.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"Q33HE5AGDYG6YP2GG4YEQAGZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IDMCRNTSXURL36WECECFMTVL","name":"","sku":"175","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"PTUE4IWLEWCSSRPCYU4TCVXI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Strategy drive","description":"Itself wind show police anything. Who scene threat before.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"AGFXTODMMT3TKBY2XJYL25NR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PTUE4IWLEWCSSRPCYU4TCVXI","name":"","sku":"418","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"BDSWR6WLYXMEA3OUYSNMRTS7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Strategy generation","description":"Positive owner two term organization wide.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"DRMHKDBIXSYGAMXXOTFNRITM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BDSWR6WLYXMEA3OUYSNMRTS7","name":"","sku":"1067","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115820} +{"stream":"items","data":{"type":"ITEM","id":"WLDSZ47NAKSN3Q3SHINKLNNE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Son machine","description":"Foot relate site television audience concern discover.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"HYZPID6AWQPCDZWHO3EBH4AX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WLDSZ47NAKSN3Q3SHINKLNNE","name":"","sku":"810","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"XO3A7SWVNCR2J7MW7L2PAEDU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Help yes","description":"Live camera law top reveal. Gun thousand word their late glass.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"GXAI5GFI2Q5GP3LS4T3Z6G64","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XO3A7SWVNCR2J7MW7L2PAEDU","name":"Mr","sku":"1056","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YZNC5Q2IPWF3Y55KFJ3F52G3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XO3A7SWVNCR2J7MW7L2PAEDU","name":"Leader","sku":"1056","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"QTVM2XKSNLT6LHPUV5T2CDJZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Contain sound","description":"Instead week west week. Sell short structure shoulder study view.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"7OV73X3KCCPHXMFILIED2WAD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QTVM2XKSNLT6LHPUV5T2CDJZ","name":"Dark","sku":"146","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"AO4NYTZZTLIMQ43LVIGOSD2F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QTVM2XKSNLT6LHPUV5T2CDJZ","name":"Capital","sku":"146","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"4LUJ2LGJV7P72GW3OLZ4AOPH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Book skin","description":"No state through serve attack treatment.","category_id":"HUFPCHOZATSPVD5BN7PWAMTT","variations":[{"type":"ITEM_VARIATION","id":"XNKXU6PCVILVSKGI3GVRBNAV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4LUJ2LGJV7P72GW3OLZ4AOPH","name":"","sku":"149","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"FMLEW24VHOVTLYIV5JXCSV5S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Send oil","description":"Central together how body day well respond.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"PPUDDHWN7LJTNAGHJ6BXYMEW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FMLEW24VHOVTLYIV5JXCSV5S","name":"Admit","sku":"521","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6ZMSI33LYDRPAEELGQX3NJFL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FMLEW24VHOVTLYIV5JXCSV5S","name":"Author","sku":"521","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"V7Z5HU5WTEVFYERSFP7B2Q3H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Play adult","description":"Two him national law. Last member whether candidate. Dark college while I.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"KEWRUCQTXVX2CTYNV2C2BZGO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V7Z5HU5WTEVFYERSFP7B2Q3H","name":"","sku":"359","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"IRVUGU67AXRSR25SLMIGULWD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Doctor character","description":"Gun first service affect dog. Final interview ok eight happen speak.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"ZM3OZ5FISU5PHRHT7F3QXIX3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IRVUGU67AXRSR25SLMIGULWD","name":"Some","sku":"961","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RDMWNHWBERVZNFMYKT7BU3FH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IRVUGU67AXRSR25SLMIGULWD","name":"Argue","sku":"961","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"HEYCL2F4JSMSDBS52EDJP7RZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Including her","description":"Dog over room past television stuff role. Though impact our really.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"7TNTRATVOCBBICGNZ6YC2BGD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HEYCL2F4JSMSDBS52EDJP7RZ","name":"However","sku":"609","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZNMDGQEBCWW4Y6JM6J443C5L","item_option_value_id":"WZV2DJ4QHNMNM3QEUDNOACXS"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SVPLCDJ4DK4MPAKUFWNCDQCG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HEYCL2F4JSMSDBS52EDJP7RZ","name":"Already","sku":"609","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZNMDGQEBCWW4Y6JM6J443C5L","item_option_value_id":"XYR7OLWYSCVL3ISKWGJC5M6H"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"ZNMDGQEBCWW4Y6JM6J443C5L"}]}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"53J27BY6WII3IBWEJFDST6VZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yeah such","description":"Already camera game. Itself trouble outside brother continue response career.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"DPRDTSXTF4MRGLQ2SGQCEW3O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"53J27BY6WII3IBWEJFDST6VZ","name":"","sku":"938","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"6X7OKKEB3A64FA4USSZ5OH7P","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Project stuff","description":"Exactly today cut technology. Decision able claim.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"34KBHZCCWPMEG3SPOI46KXOV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6X7OKKEB3A64FA4USSZ5OH7P","name":"","sku":"965","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115821} +{"stream":"items","data":{"type":"ITEM","id":"TRG6QJIKCDEACWZM37P5R74T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Must choice","description":"Rate thousand history case claim. Raise dinner recently blue system century.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","variations":[{"type":"ITEM_VARIATION","id":"K5UEIS3UNTSUUPB2UDHESAL7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TRG6QJIKCDEACWZM37P5R74T","name":"","sku":"1015","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"RSSEB57XXD5ZMI2EFAJWYF5K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Including answer","description":"Success reveal word service certain investment.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"DKVXN2J7SLEROSIMVOY3PRYA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RSSEB57XXD5ZMI2EFAJWYF5K","name":"","sku":"183","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"AACH3CWHC2Q4C7OHUWSVDLJW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Day cover","description":"Employee executive ever house present approach.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"FAXMPLKWEPLUTBY4V7PFJUSP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AACH3CWHC2Q4C7OHUWSVDLJW","name":"","sku":"244","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"7OV4G7LHB3ONURUKYDENYJIT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Deep white","description":"That theory consider art. Recent camera yes world.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"NGOLJN2EUANARUNBRYOD56SY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7OV4G7LHB3ONURUKYDENYJIT","name":"","sku":"282","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"DFDFD5MCO7JGBN4PSM5T3RDP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wish east","description":"Tv many our prevent fast. Certain firm agreement. Stand fear effort manager.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"INY3QCJ4FOK2L5CALSG56D3F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DFDFD5MCO7JGBN4PSM5T3RDP","name":"","sku":"779","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"E7OFMXDZKGYFBE5HIO5W7NGX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Leader impact","description":"Check real might save later. Reach pull window set the social without economy.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"Y6LNYLBQ4NNBYVT7E6NCBCYH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E7OFMXDZKGYFBE5HIO5W7NGX","name":"Contain","sku":"849","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":12200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"IYIKLMUHZQO7ZTEXTNQARZ44","item_option_value_id":"EHPVWYIUPCWFNLZFXB2LBQ2P"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"643STSY42LUYRMCXBYVB7YUC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E7OFMXDZKGYFBE5HIO5W7NGX","name":"Claim","sku":"849","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"IYIKLMUHZQO7ZTEXTNQARZ44","item_option_value_id":"7FQYANS2AJCIYN46ZRTVMWNZ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"IYIKLMUHZQO7ZTEXTNQARZ44"}]}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"NOUSH54J6V3CIGRTC7LKYNCC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ever bit","description":"Away attack watch. Thank build box their thousand.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"W5SGBFF7QAWWOQ7IDSNODU55","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NOUSH54J6V3CIGRTC7LKYNCC","name":"","sku":"358","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"LS2IIP7PYLVX2KONG7VUAVVN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Team bag","description":"Thus throughout news growth story itself. Manage different free office.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"E62GPAENS5BNOJHW5QXGTGEL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LS2IIP7PYLVX2KONG7VUAVVN","name":"","sku":"728","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"VAU7NFFBNUXKQBQYKAQ2LHRD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"To direction","description":"Move painting although year. Attorney them security full kid.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"JBFQRTPD4A26KSBCRMFWC6JB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VAU7NFFBNUXKQBQYKAQ2LHRD","name":"Model","sku":"833","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":13300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"UOKIHHZAOJO4AJGNNARZX7XS","item_option_value_id":"WX65FMV3RDVMWYBIFDSWLJZO"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KTTFKWSI2NYO2L4FOLWEZMP5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VAU7NFFBNUXKQBQYKAQ2LHRD","name":"Gun","sku":"833","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"UOKIHHZAOJO4AJGNNARZX7XS","item_option_value_id":"FHAM6UQRWXE4I6352FQQOQ4W"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"UOKIHHZAOJO4AJGNNARZX7XS"}]}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"KLJ646SFCJFVWF2GXMVGI3X2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Everything management","description":"Stage decision guy fine event ok.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"ZUKQWE65FTY6TA6NM27KYDTW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KLJ646SFCJFVWF2GXMVGI3X2","name":"","sku":"915","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"2FOYMVK3VOKMMJQMCVC4MROW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Base ever","description":"Its write recently himself true of employee.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"FRRZ7EHAPVTI2UTOSXBMQSPV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2FOYMVK3VOKMMJQMCVC4MROW","name":"Next","sku":"351","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"M3MDK4WMZJTMD7QDX7MBQQOB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2FOYMVK3VOKMMJQMCVC4MROW","name":"Skill","sku":"351","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115822} +{"stream":"items","data":{"type":"ITEM","id":"KU5CQQUK66N4AXZKVHT7R53J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Serve college","description":"Tell on recent resource ready instead item. City movie past theory.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"3SB3BQ5W5GZQQ6X5KPVQB35N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KU5CQQUK66N4AXZKVHT7R53J","name":"","sku":"892","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"VNUNEC2GZQTAQ3TLKGPPHEQA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Direction suddenly","description":"Try notice assume get third only concern mean.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"433N6GQ2GXRFZU4SIS2BAIND","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VNUNEC2GZQTAQ3TLKGPPHEQA","name":"Occur","sku":"1049","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OSR5PZQW2YDYTLOJCEG5WERN","item_option_value_id":"BU7LC47AXJFQAVKQMEOGLCCP"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KIUJV6333JFLKV34TANRXLPL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VNUNEC2GZQTAQ3TLKGPPHEQA","name":"Could","sku":"1049","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"OSR5PZQW2YDYTLOJCEG5WERN","item_option_value_id":"IT4HSJ44DSSJI7HA4GEXS4FM"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"OSR5PZQW2YDYTLOJCEG5WERN"}]}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"ERTLOF4RMNBO67ZHZ6WI3HT3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Management show","description":"Reason data lay after we too. Change generation a sound wish positive game.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"ZUX2YR27OQGRNZT4HXWVD7JM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ERTLOF4RMNBO67ZHZ6WI3HT3","name":"","sku":"1072","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"BZ2HWPA7FFMBBUQGP7PKBSO4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"When food","description":"Sometimes fly teacher boy sing wait. Owner unit along option major join month.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"ES427NFIGMA33PE4MVZEVPL5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BZ2HWPA7FFMBBUQGP7PKBSO4","name":"Board","sku":"257","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":2300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"GSXIW5NM6WJJZFSORQHZTE2H","item_option_value_id":"XBR3O3ROWLJYRI6IB3FU55QY"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VV3ITGFTMBOEPGACLP5ZPS2J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BZ2HWPA7FFMBBUQGP7PKBSO4","name":"Probably","sku":"257","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"GSXIW5NM6WJJZFSORQHZTE2H","item_option_value_id":"NF2PH322XMXFKQ2IQ5JHN7YC"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"GSXIW5NM6WJJZFSORQHZTE2H"}]}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"WX6QRTLJZTUNS2XDETDXROVL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Who letter","description":"Vote activity unit say.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"Y6R7THN7WN44NCSL5LENXWDE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WX6QRTLJZTUNS2XDETDXROVL","name":"Contain","sku":"341","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"U5JGA2PKP3FXEFALJKMPDYTV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WX6QRTLJZTUNS2XDETDXROVL","name":"Painting","sku":"341","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"4KEGBGE5PQ5VJMYR7PXIZMRT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Size industry","description":"Similar never while your. Attack rate thought lot section.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","variations":[{"type":"ITEM_VARIATION","id":"RQI3HJ7WVFFUO3HSELD67TN7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4KEGBGE5PQ5VJMYR7PXIZMRT","name":"There","sku":"511","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FEVAY525GKNTIRZ4CQEWJSCW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4KEGBGE5PQ5VJMYR7PXIZMRT","name":"Yard","sku":"511","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"SC4XXGBWBF4BKTRFFEYXEU6G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fire per","description":"Begin southern old traditional several effect. Along east child lose.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"23QSKAKDF56FV5RCTY35FEDZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SC4XXGBWBF4BKTRFFEYXEU6G","name":"Quality","sku":"737","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":25600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"YPPDKTSA6XXT7PQOZOC2OQ73","item_option_value_id":"DM2W47O63SCFXPGHLTKA53GW"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6S6O2EREKDTDGIV6I3GLAK7H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SC4XXGBWBF4BKTRFFEYXEU6G","name":"Fast","sku":"737","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"YPPDKTSA6XXT7PQOZOC2OQ73","item_option_value_id":"FXVAPDNEAVCBARNSHE2LH6IA"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"YPPDKTSA6XXT7PQOZOC2OQ73"}]}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"Y4TDOLWOUVY3TMMI64LBBH3M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Difference either","description":"Itself catch fly several price alone small. Detail note result however.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"H3KAZH6FTASSWLYQ6YRCGJGA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y4TDOLWOUVY3TMMI64LBBH3M","name":"Vote","sku":"831","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NCMU6I324NTFBAP7SCFJBY2Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y4TDOLWOUVY3TMMI64LBBH3M","name":"Quite","sku":"831","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"PPGVGRWSZKIDVYXAHSWVWOPO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Consumer also","description":"Bed kind degree cold single blood race show.","category_id":"TKDCFKKZ4RKPUGU2K23FD4QB","variations":[{"type":"ITEM_VARIATION","id":"47XFYCDAJEBDYDH6NR2NGSOK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PPGVGRWSZKIDVYXAHSWVWOPO","name":"Suggest","sku":"851","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"UDD4FXEVMD6SWMH6FVHA4VEC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PPGVGRWSZKIDVYXAHSWVWOPO","name":"Else","sku":"851","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115823} +{"stream":"items","data":{"type":"ITEM","id":"KK6MX7XLIRPJGPFIEZFLXPJU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Person tree","description":"Operation deep term benefit card Mr available. Figure rise message sister each.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"GGTWSIPT6KDG4GV5CQQZJQPW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KK6MX7XLIRPJGPFIEZFLXPJU","name":"Him","sku":"1021","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"4I467J2Y3MEPP5MC3MB7CC2M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KK6MX7XLIRPJGPFIEZFLXPJU","name":"Professional","sku":"1021","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":13100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"ZKKXALFKIWJ4N7KOLS5L34FH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Series community","description":"Spring night scientist. Process sea instead century. Too place explain meet.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"3ZGU5TZMRCABMWWSDOBNI6AA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZKKXALFKIWJ4N7KOLS5L34FH","name":"","sku":"662","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"GZFK2W4IKAUOFCYMJHWRFPXE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Soon decision","description":"Bed into camera. State issue easy use leave international natural during.","category_id":"VL5ZNG6IQN3JX4O43EK5HHPQ","variations":[{"type":"ITEM_VARIATION","id":"QPNUCMHKCPUVPUHJOSBWFOD2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GZFK2W4IKAUOFCYMJHWRFPXE","name":"","sku":"722","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"7SCDXA4D7GYNZ5RUKO4VJ2N2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ready civil","description":"Win second activity white area budget me. Father job I few.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"IEH3AJSECWU2EGMX4G3RYN3V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7SCDXA4D7GYNZ5RUKO4VJ2N2","name":"","sku":"947","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"OHWJLOLTUZP4JUSXXVSDLUI3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Others treatment","description":"Fine also reflect. Choice top writer let.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"XHMEATMRMTNVAOP3SWXUOQNE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OHWJLOLTUZP4JUSXXVSDLUI3","name":"","sku":"238","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"FPUWPUS3VXUYLNIH5WAS5WSH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Story nice","description":"Difference candidate standard will win vote.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"DXNL2GANEN4WZ23Y22HE6LWJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FPUWPUS3VXUYLNIH5WAS5WSH","name":"","sku":"242","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"7YPZH73YA3QHPZLFSY2KXDPZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Control them","description":"Into agreement general series. Story ask sing another speak man old.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"MUFNCSUVTW6KFKUT4M6XQO4H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7YPZH73YA3QHPZLFSY2KXDPZ","name":"North","sku":"946","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"I3LOKLJ4EZQYLJIGWEGL4PXH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7YPZH73YA3QHPZLFSY2KXDPZ","name":"Far","sku":"946","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"DZBYWAKK2EG75FWZ3CEDV4DG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Free attack","description":"Economy doctor behavior. Speak establish group claim.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"K6F3SSIPZN2AFFU6NFEP2SE3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DZBYWAKK2EG75FWZ3CEDV4DG","name":"Buy","sku":"1051","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WKOJEVJOWLYPBT4OA2FC6TL2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DZBYWAKK2EG75FWZ3CEDV4DG","name":"Imagine","sku":"1051","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"ILAISM53PIHT5JUOMHRBGZTG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Occur share","description":"Return may show analysis. Name energy feel artist perform receive.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"PKXWNOOKDXM7PAIWFSESB5CO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ILAISM53PIHT5JUOMHRBGZTG","name":"Total","sku":"1076","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VTNDGETMOA6WYJTOQ6RTDBYA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ILAISM53PIHT5JUOMHRBGZTG","name":"If","sku":"1076","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"XBYI4RVI3UOBFZLDJOE2KX3E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Future same","description":"Open agree onto every nor. Yard seat father quite.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"522DU5BG3PVWZFNOLUDPMRGK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XBYI4RVI3UOBFZLDJOE2KX3E","name":"Late","sku":"236","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZILNX7Q6VFSOKZQQ752AFBW7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XBYI4RVI3UOBFZLDJOE2KX3E","name":"Threat","sku":"236","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":18200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"6IIKQYMDLZETHXSX4G76GEJ2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fire else","description":"Dark pass least yes end. Tell audience public democratic worker age network.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"GYVWLAF2OOGKS3J57NPFDUPD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6IIKQYMDLZETHXSX4G76GEJ2","name":"","sku":"304","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115824} +{"stream":"items","data":{"type":"ITEM","id":"KBJGDQ7GVZMZI5VTGBE7PTE4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Give condition","description":"Price usually before federal with check visit.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"HDW7NW373U547UTDAA2PDLVO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KBJGDQ7GVZMZI5VTGBE7PTE4","name":"","sku":"532","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"N2PIOMIBV7BV2URXJFZMDMF2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Institution difference","description":"Sit its common what none risk learn.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"O4E6ACT2TW4ULMTF6DCYOKGU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N2PIOMIBV7BV2URXJFZMDMF2","name":"Both","sku":"681","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"I235RXXVDBZG2HV2EH7US577","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N2PIOMIBV7BV2URXJFZMDMF2","name":"Including","sku":"681","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"TQ4CMCMVA5AF4GNBHDAE2PUW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Democrat citizen","description":"Vote sort conference physical story tell. Dream exactly stuff.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"JWJ6EUHCTGFT7WCAXYQZLICR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TQ4CMCMVA5AF4GNBHDAE2PUW","name":"","sku":"522","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"SQ7ARKRGDZTJM4GDMLWUWQVV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"National own","description":"Wonder certainly firm best series success however focus.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"MZOURUWE7AVZSWNTGVZUCTJG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SQ7ARKRGDZTJM4GDMLWUWQVV","name":"","sku":"544","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"RJHC4TPHTBILHUFXNDY67KXE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Itself concern","description":"Sell need fight save gun their watch hit. Newspaper many across only.","category_id":"6XGJYALDFLHHVEHV7MIGU5PV","variations":[{"type":"ITEM_VARIATION","id":"2IS2NMIJ6CBWU5P45WFNVPSZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RJHC4TPHTBILHUFXNDY67KXE","name":"","sku":"132","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"XDUOKGCFXIFPPCQZ3LJGOWRN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Center somebody","description":"Behavior open between dream city. Contain into sing be north.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"7WCBDAEZSUKE2FLR5F2XQDJU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XDUOKGCFXIFPPCQZ3LJGOWRN","name":"","sku":"380","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"I7GSBM7EGMZCFA2VTSMKGWL4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Three get","description":"Piece behavior expert right while. And woman who itself.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"QD3TOXOYWWR6IV7MGUYCPI63","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"I7GSBM7EGMZCFA2VTSMKGWL4","name":"","sku":"902","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"CR6JWOLPNJGAJEDEI7HFNXAG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Score line","description":"Then well listen take around claim. Play hope attack size enjoy spring sing.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"AVXD3QV5ITZMELOKZ7RAMO2D","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CR6JWOLPNJGAJEDEI7HFNXAG","name":"Food","sku":"441","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"74I7HYPRA56RSPTOJMCCLWQR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CR6JWOLPNJGAJEDEI7HFNXAG","name":"Win","sku":"441","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":27600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"VQOAP5P7K6XRUKHCKZ2T2HBX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Where his","description":"Focus successful institution growth. Event condition cover fill.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"U7R7BQRNDKM274N42OUPGVEF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VQOAP5P7K6XRUKHCKZ2T2HBX","name":"","sku":"693","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"MRGZEPG5JEAWIDH55ZZ6C4QA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Type at","description":"Truth amount body what job public. American letter hour bed.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"JPQ727FEGFCOMJ2NDUCKIZ77","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MRGZEPG5JEAWIDH55ZZ6C4QA","name":"","sku":"382","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"S72HHVYZ37AY2O34LA3JPK6L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Various conference","description":"Institution kind more send south man. Certain sense short success.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"BCR57TP6HCDDFRYYR6XA2G7X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"S72HHVYZ37AY2O34LA3JPK6L","name":"","sku":"454","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115825} +{"stream":"items","data":{"type":"ITEM","id":"T4I66CAD5GZMZTPB4DPYVSAS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Case call","description":"Lead fly shake hair worker identify. Continue interview seem know book nothing.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"THSEIEIXW4RTJVFQX5THSX7D","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T4I66CAD5GZMZTPB4DPYVSAS","name":"","sku":"483","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"WGTRWEUTJ7K6CRNX4EXAEUF5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Reveal off","description":"Manager one worry page believe just break. Bar ok little growth avoid.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"B2ZHLJ3DKVGPKKAIK6LZOUAH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WGTRWEUTJ7K6CRNX4EXAEUF5","name":"Seem","sku":"496","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DBZIIPE4NZJWZVHFSLEVE65I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WGTRWEUTJ7K6CRNX4EXAEUF5","name":"Throw","sku":"496","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"CTF6WZ3GEOYPARQQIY2F33QU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Office local","description":"Final let matter half security. Fight concern day yourself wear.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"VDK2R2E4YGVD42EVX5YRE5IO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CTF6WZ3GEOYPARQQIY2F33QU","name":"Reduce","sku":"825","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":13900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"NFLJ255E72BSMO43F3BROEVR","item_option_value_id":"UHUBCWPLSIGRQX3QNGR3M4GK"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"AEO2AH2XEZ4FEZUNIVGDA6FF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CTF6WZ3GEOYPARQQIY2F33QU","name":"Speak","sku":"825","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"NFLJ255E72BSMO43F3BROEVR","item_option_value_id":"2MS2RN4TQZAHIXFGW6RPHT2M"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"NFLJ255E72BSMO43F3BROEVR"}]}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"LYBKITWLNELTHRMJLQWWIIF2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Once science","description":"War as head these though read. Similar common than property only.","category_id":"NH76RA74NP5U4LF2BRTI3Y5P","variations":[{"type":"ITEM_VARIATION","id":"3QWPIYFE4CPQI573BH75WW56","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LYBKITWLNELTHRMJLQWWIIF2","name":"","sku":"1053","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"EAT3QDP4ANDRNVAWGUCP33RQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Art quickly","description":"Care blood mouth staff establish same relationship.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"QOT7D43UGRMGCVAKNH4TR5ZM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EAT3QDP4ANDRNVAWGUCP33RQ","name":"","sku":"223","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"DRGJWZKAG5HFPCSAUYFC6HJR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"You focus","description":"Occur what generation fine. Meeting central second stuff record opportunity.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"54SSJVDR6A4D6A3AZQAGSHKN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DRGJWZKAG5HFPCSAUYFC6HJR","name":"","sku":"348","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"COCFSNJ4BFAI5MNKSWPTWQHN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Compare free","description":"Sound scientist board establish image through.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"H7RISPP37YYP5HHAASZFLDDM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"COCFSNJ4BFAI5MNKSWPTWQHN","name":"","sku":"919","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"63QILGIVMHRFAFYGIUNTTNE5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Similar until","description":"One explain second. Hand reality student hard. Open list way.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"KCRRPJQBWFQMO3A6U7JWIVAY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"63QILGIVMHRFAFYGIUNTTNE5","name":"","sku":"930","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"I2JEIEO6GDMLDCQZTCE7YFFV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Although exist","description":"Through every chance by. Customer that state will occur describe feeling these.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"GSL7LGBZVE47XCHMIA7DEYWB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"I2JEIEO6GDMLDCQZTCE7YFFV","name":"","sku":"959","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"CXATDIDUJ55UQTTGAF65BOUS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Power history","description":"Avoid statement get him class position.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"F4OAOQCATY3ZWC73JRYZHIKA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CXATDIDUJ55UQTTGAF65BOUS","name":"","sku":"203","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"QD4ZCCALWHK72UGW3A45Q6YW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Group his","description":"And work PM professor safe. Him out surface base thousand consumer last.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"TVMZP46U6YFQTEWOQBTMETME","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QD4ZCCALWHK72UGW3A45Q6YW","name":"","sku":"272","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"XP5MFBUKEA4SDOA6I5B2EMUI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Understand sense","description":"Nothing concern expect be simple person.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"DYE7IMWWI3KZFJW5MHS25R6W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XP5MFBUKEA4SDOA6I5B2EMUI","name":"Call","sku":"286","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"2KP6P6U5F5T2YS4IXKHEHYCE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XP5MFBUKEA4SDOA6I5B2EMUI","name":"Find","sku":"286","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":10600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115826} +{"stream":"items","data":{"type":"ITEM","id":"SD6WXKHI2H223P44ZOIX6OK7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rate history","description":"Any more girl develop unit lose. With remember generation.","category_id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","variations":[{"type":"ITEM_VARIATION","id":"WVLCDKZPXDU4ZJGEEM2JDFGX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SD6WXKHI2H223P44ZOIX6OK7","name":"","sku":"717","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"JO2BOADVFJEKEUGFT72FAZ7V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Authority work","description":"Far each hospital shoulder one available total.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"76CRVSZPYFINPI4X3PY2R3UU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JO2BOADVFJEKEUGFT72FAZ7V","name":"Candidate","sku":"596","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"OI3XKPN6LBOF7LN6VCYTE4FV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JO2BOADVFJEKEUGFT72FAZ7V","name":"Door","sku":"596","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"UH2QCGF6XWIUE7NXBAJYZ5L6","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Anyone space","description":"Vote down thus write yes box. Tree style much.","category_id":"UDAF47E5DMK3RQ2A2WQX57VA","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"5VEAWDFNSAN7SMVFFUQUAUCA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UH2QCGF6XWIUE7NXBAJYZ5L6","name":"","sku":"1018","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"32MCPK3DEROBVOVO4ACXPLPI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Question way","description":"Over wait assume no try. Situation realize seek.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"T74B2ZE347RMGKF66T2IZRDS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"32MCPK3DEROBVOVO4ACXPLPI","name":"","sku":"240","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"AGEIUELBDZH2CGD2NHKQR5VH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Especially risk","description":"Mother like book certainly leave. See key success ok police.","category_id":"NQZPC357BWLWJFGK6U4TBM7P","variations":[{"type":"ITEM_VARIATION","id":"VN5IX7DQBFJ6ML5FIDUJBGW3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AGEIUELBDZH2CGD2NHKQR5VH","name":"","sku":"507","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"HQ62VQFD4J5CN5FYFHUBS674","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Seven will","description":"Surface under pressure lay relationship enough son. Mother race up choice.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"4A2RN6RIDAHEN7FYZQ7AFKSN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HQ62VQFD4J5CN5FYFHUBS674","name":"","sku":"807","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"4W23RTMHJ6YR5CWAMGPZCI4A","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Word theory","description":"Mind somebody cut magazine factor. Leg light visit agree speech sit.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"4AINW3ASFB6AUAUMLV4BSCQX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4W23RTMHJ6YR5CWAMGPZCI4A","name":"Account","sku":"116","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6YVBYEF6KPJB3C3O62ZCWQ3S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4W23RTMHJ6YR5CWAMGPZCI4A","name":"Cut","sku":"116","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"O4BYS3PNYGZVAX7VM52ZCOGY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yourself last","description":"They require always good. Sense us great school against friend.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"NUOPP7BAMAAESB5NTLBAAA2T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O4BYS3PNYGZVAX7VM52ZCOGY","name":"","sku":"207","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"DKYHQHOSPBVFMDN4JNHQCNZA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Occur inside","description":"Race need his my window. Food attack million through reflect build vote.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"KX5JLEM5ERFNHS6BHDCSATVU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DKYHQHOSPBVFMDN4JNHQCNZA","name":"Time","sku":"446","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"5PWV6YU3EZGYOTYGCSZLZL5M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DKYHQHOSPBVFMDN4JNHQCNZA","name":"Paper","sku":"446","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":13100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"E2SZX6TOMEJES7TRWLA73E73","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Each lot","description":"Series pick stuff choice agree experience spend business.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"5JAIOB3F4FHVDXKT7VMPVWUJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E2SZX6TOMEJES7TRWLA73E73","name":"","sku":"573","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115827} +{"stream":"items","data":{"type":"ITEM","id":"LWZPX4RTK2BTWSFW7E7LIUCH","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:25:28.608Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Appear suggest","description":"Sign product situation detail chance PM. See themselves pretty product water.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"WRPD2Y5XFE2HUVGEB3CEWZEI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LWZPX4RTK2BTWSFW7E7LIUCH","name":"Personal","sku":"816","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SHL2ORZV5ZDHTQPKP5GTA2K6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LWZPX4RTK2BTWSFW7E7LIUCH","name":"Test","sku":"816","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"VIXZMITIFXU2CMFLITULYZHZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Director difficult","description":"Street pretty medical we less land. Ability investment drug yard.","category_id":"FFZKRX37QWOOAIDCJ3LSUX3Y","variations":[{"type":"ITEM_VARIATION","id":"JL5TNXPST72XX25CQ4VFVKOB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VIXZMITIFXU2CMFLITULYZHZ","name":"","sku":"918","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"2J2EBTMA73LSAEERHRNXEG3F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Short many","description":"Material energy evidence. Marriage final short word always state far.","category_id":"BI4RJN77VHYUMPOOITI2E5H5","variations":[{"type":"ITEM_VARIATION","id":"3JNDOEAY7NPVCSLWP2J6CE2A","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2J2EBTMA73LSAEERHRNXEG3F","name":"Decide","sku":"416","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JSAKKWJ6NVNEBIB6RF7J756Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2J2EBTMA73LSAEERHRNXEG3F","name":"Cup","sku":"416","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"ZLN3UD2GVRV4ICE26EV7L4WM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lot thousand","description":"Pressure speech yard health agree morning home anything.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"KM43FRK4UXP4UEPDQ5SM3ZLU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZLN3UD2GVRV4ICE26EV7L4WM","name":"","sku":"597","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"7KOPNGD43AREH3KRAHXJKAKW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Join behavior","description":"Loss professor boy all TV these social. If recently long hope may candidate.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"W22JCVMMPSIIOIT3R2BJQLJ4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7KOPNGD43AREH3KRAHXJKAKW","name":"","sku":"634","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"XNNPDOETABFDTO6AG7VQHR7V","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Color evening","description":"Radio arrive over ahead address perform.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"KS7MKXBDWWEERNAB6RYTJTU4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XNNPDOETABFDTO6AG7VQHR7V","name":"","sku":"652","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"54M3AIR75DZFHXJF4P3VESZ5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Successful audience","description":"Rest friend ability first. Process century thank enter agent.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"PGAGXHMB4Z7BHF2NW272QX3Z","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"54M3AIR75DZFHXJF4P3VESZ5","name":"","sku":"667","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"KXHJ6MRGMODGMQQSLWTZBXVD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Offer room","description":"Rather population force risk would bill.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"BEQ5S2VRW3AQQJCKZ5VI235Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KXHJ6MRGMODGMQQSLWTZBXVD","name":"","sku":"772","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"UYZGBMJSQB4J6RNJIB2BLMIR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Head program","description":"Attention too great begin whatever next need.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"HSWTISXLFT5PEHNH4QZEUWOV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UYZGBMJSQB4J6RNJIB2BLMIR","name":"","sku":"112","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"IRUZNYER3IVRVJKUL4FKAIPX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Necessary agreement","description":"Sure situation science executive deep. Type someone out.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"5CKV3JQ2R3H2HC73GI4P7YUC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IRUZNYER3IVRVJKUL4FKAIPX","name":"","sku":"243","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"5YHFGQYRJXCGUM7LJNE5JRQ5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Likely traditional","description":"Sound education hair get stuff. Sing management somebody their.","category_id":"G4KGGGI4OTLBU4XUXATILINN","variations":[{"type":"ITEM_VARIATION","id":"HEH2KKURIWPFJZTRC2H2YZOL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5YHFGQYRJXCGUM7LJNE5JRQ5","name":"","sku":"548","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"JWVM6XBRUDBZWWORT6IAPLJW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Letter really","description":"Game family three former. Anyone official laugh foot almost share lot region.","category_id":"R7GGRBQIE7NRYLCRK4ZOLEB5","variations":[{"type":"ITEM_VARIATION","id":"TS5PJXH22VJQZ6GYKDNSFIKG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JWVM6XBRUDBZWWORT6IAPLJW","name":"","sku":"787","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115828} +{"stream":"items","data":{"type":"ITEM","id":"L54MGTOCKALHWTGP3ICTMWW7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Husband it","description":"Figure million style best.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"GG3LOYR62NUBWM7EVKQYIHBC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L54MGTOCKALHWTGP3ICTMWW7","name":"","sku":"894","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"HLL7DTVIBIJVDZIZWZYWR3O5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Against stage","description":"Billion candidate employee major. Ok loss employee answer student reveal catch.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"I3P2PDYXGJOPMECBDELDTIVF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HLL7DTVIBIJVDZIZWZYWR3O5","name":"","sku":"210","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"GENFD3JXJNYOBZGCGMQEHJP3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Charge cell","description":"These choose series book billion.","category_id":"CUKTOF2MVTOTV5CPQSGC2ULP","variations":[{"type":"ITEM_VARIATION","id":"2OAOMW5V3NMURIHE553ZQR5G","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GENFD3JXJNYOBZGCGMQEHJP3","name":"","sku":"292","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"SRM246D6XE3XRROETPOCUGZM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Entire type","description":"Guess tend produce cold speech politics billion. Certainly quickly able.","category_id":"PEZAC6C67K4V525PX4FASGRP","variations":[{"type":"ITEM_VARIATION","id":"WAFSYV4ER3YT37BDXASYGW4H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SRM246D6XE3XRROETPOCUGZM","name":"Need","sku":"451","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QQ7EUBETTRK7SZKM7CYOVSIQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SRM246D6XE3XRROETPOCUGZM","name":"Together","sku":"451","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":21400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"MCB5JMFVVSWR6C3WDGUOMWJR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Board choose","description":"Any arrive say second commercial beat yeah. Subject far marriage attack.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"FR2BXEMEIO4NNP7U7O5ERAFW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MCB5JMFVVSWR6C3WDGUOMWJR","name":"","sku":"602","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"XJNF5QPGWIEDGV5E2DL5TYGN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Small step","description":"Career especially generation culture guess job. Board but card.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"CA3O7DKG337GWUUQLYJKAKNV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XJNF5QPGWIEDGV5E2DL5TYGN","name":"","sku":"1093","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"R6SC6AAGKHA3BD4ZRAGRQVZI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"In state","description":"Account institution each reach second.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"JIUWLDR7VJWGCSYQ5J7A6D23","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"R6SC6AAGKHA3BD4ZRAGRQVZI","name":"","sku":"974","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"LXWXSQAATUX3UJ7KMWHJAAC3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Young reality","description":"Morning since out contain miss without pattern political.","category_id":"CLLT5F4OBQVPAK6W2D5D57SA","variations":[{"type":"ITEM_VARIATION","id":"IYZFGANPBQMKDYPDJEQUXIPS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LXWXSQAATUX3UJ7KMWHJAAC3","name":"Sort","sku":"126","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JJRLF5UM3FYH4AWY3N27B2IV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LXWXSQAATUX3UJ7KMWHJAAC3","name":"Set","sku":"126","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"XT7MEDFAIUEN65YDVJY3B4BQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thing film","description":"Hard size station newspaper.","category_id":"FKT5MXBV6OTB36UNGQQQPJ5T","variations":[{"type":"ITEM_VARIATION","id":"T3S4OEGNKZBHUALQUUXL2ONO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XT7MEDFAIUEN65YDVJY3B4BQ","name":"","sku":"229","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"44725DIYEZCWIJZME4UCVJZS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Cultural open","description":"Out each free daughter later. Action kitchen safe party send outside.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"FEUC3F3ZP3OCPON4CLWPH6N2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"44725DIYEZCWIJZME4UCVJZS","name":"","sku":"274","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"OZWTMFG5KNRBODRJ7QBDCYWP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Environment close","description":"Car Mrs question hundred sign. Friend two term purpose my agency turn.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"MGZT3A6AW3SMDYHUKMXXXDJ3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OZWTMFG5KNRBODRJ7QBDCYWP","name":"Number","sku":"369","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":10100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QAEYJ45PQQLDTS7AKQ3FAEQJ","item_option_value_id":"4Y27P4QKOTCQJGMW7A2B4UCR"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"O6M37SMQ6RJPA7Z5U3QTXJ3M","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OZWTMFG5KNRBODRJ7QBDCYWP","name":"Decade","sku":"369","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QAEYJ45PQQLDTS7AKQ3FAEQJ","item_option_value_id":"O33MOD4EPRDQNL333ABEUVCW"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"QAEYJ45PQQLDTS7AKQ3FAEQJ"}]}},"emitted_at":1668290115829} +{"stream":"items","data":{"type":"ITEM","id":"CD53HARMBO7WLXLS6TKB3AVD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Win soldier","description":"Enjoy throughout family life. Account section with market.","category_id":"BUCBYOU4DOMMA2EECV4GKDE4","variations":[{"type":"ITEM_VARIATION","id":"TF5DIO45XR4LWLIPRLZIIFFX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CD53HARMBO7WLXLS6TKB3AVD","name":"","sku":"682","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"54QF5ZWT7WRQUD2KN3NKA52Q","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Good too","description":"Reveal plant life. Letter somebody building southern. Yard form source upon.","category_id":"OO7ZYEG6TTIZVWD2USP5I2OE","variations":[{"type":"ITEM_VARIATION","id":"5XRDRMJIYBKWZQTKNB7QIGY7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"54QF5ZWT7WRQUD2KN3NKA52Q","name":"","sku":"840","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"MDFCHJRUOFY24MDXGB6P2LV2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Continue especially","description":"Continue name leg husband. Wife raise receive product administration although.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"NFTBD66VKVJLDDWHEBYNPJFF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MDFCHJRUOFY24MDXGB6P2LV2","name":"","sku":"850","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"LV3Z76RNDTLKBDTS4JA45QOL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"He room","description":"North ten discover someone run interest.","category_id":"ZONTPHF4OJPGMVR77OAWMAPY","variations":[{"type":"ITEM_VARIATION","id":"YH5HEHD34JRDTQVHP355IDCP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LV3Z76RNDTLKBDTS4JA45QOL","name":"","sku":"1098","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"O67KGRSAVOOSXWCGGHCRG2KU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Black design","description":"Local worry child past board pattern. Former nearly agreement manage.","category_id":"R2PRPL7BWLS4XE6V5T3XOWP7","variations":[{"type":"ITEM_VARIATION","id":"NKTY2VXNU6XADGEM6UZO4VL3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O67KGRSAVOOSXWCGGHCRG2KU","name":"","sku":"283","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"ROTXMH5EDMYJABEVSN4GQWNM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Most take","description":"Hand page fire protect animal onto. Fear someone leader stand resource.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"OVKSOFGWLZIXKE3MGAPG22S3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ROTXMH5EDMYJABEVSN4GQWNM","name":"","sku":"558","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"IWOBVECXMTJJ6OXWCWJUOIV2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Old article","description":"Culture lose others strategy young.","category_id":"M7N4UP4HOGXAIWEVYWJ36XVF","variations":[{"type":"ITEM_VARIATION","id":"J7JT2LW4WIK2STWDE3ZBXNKP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IWOBVECXMTJJ6OXWCWJUOIV2","name":"Peace","sku":"905","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":17100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"C6U2BRTJHPVVEED2KIEW3ETZ","item_option_value_id":"DAVNFLZO2PGYBBJ2ZBSPQEWF"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZT7LLDIBM3UZEBNFW5DIAHXS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IWOBVECXMTJJ6OXWCWJUOIV2","name":"Friend","sku":"905","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"C6U2BRTJHPVVEED2KIEW3ETZ","item_option_value_id":"WZGZEZVXRD6PV2XQF4IATSZ2"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"C6U2BRTJHPVVEED2KIEW3ETZ"}]}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"GIXFJDPTQIVK6GBZZK5S5GMG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Road our","description":"Hear care special entire campaign by century growth.","category_id":"U3LNOICLR663X5RPZFWDTAFM","variations":[{"type":"ITEM_VARIATION","id":"6NOY5YZUADYD52LNCBP2L655","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GIXFJDPTQIVK6GBZZK5S5GMG","name":"Heart","sku":"1089","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":14500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"APYZJCERNL2OYX7OC5HX27PK","item_option_value_id":"EQR2LXQEXE7LFDIBXTAVDIF4"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"CBFQYVSR4NMLUD66VHE5C7OJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GIXFJDPTQIVK6GBZZK5S5GMG","name":"Particularly","sku":"1089","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"APYZJCERNL2OYX7OC5HX27PK","item_option_value_id":"PRFG43WXJVL4HBLPAABTHLLP"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"APYZJCERNL2OYX7OC5HX27PK"}]}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"Q3EUES4CTZNPRLAOOHRKRWUL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Face education","description":"Amount offer lawyer teach movie.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"K6ZLC2UV57FORYJHG2W4UECS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q3EUES4CTZNPRLAOOHRKRWUL","name":"Face","sku":"266","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"S6U6U5ZUUQWLQHJ34UPKA7DD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q3EUES4CTZNPRLAOOHRKRWUL","name":"Fund","sku":"266","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290115830} +{"stream":"items","data":{"type":"ITEM","id":"ZG3NJZTOLZFRIGD5KRLAVH7S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"State major","description":"When fine serious number seat. Cut red heavy score day environment.","category_id":"B7O2NCFZDWLFAE7TV6222HOM","variations":[{"type":"ITEM_VARIATION","id":"46RRT53AGYASVDZP7CXEZPEC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZG3NJZTOLZFRIGD5KRLAVH7S","name":"","sku":"367","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116583} +{"stream":"items","data":{"type":"ITEM","id":"IOKQWETMBQV44FMH3XF6FD7N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Worry cover","description":"Week doctor fact view political amount.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"LNXHXHRRK43QAEURCY2QFTEZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IOKQWETMBQV44FMH3XF6FD7N","name":"","sku":"582","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116584} +{"stream":"items","data":{"type":"ITEM","id":"CLXT3N7D2KUPVQ6SA2KQGAF6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Report make","description":"Few simply child say politics.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"SWBJS5NGDBXBL3MWOIMGRGKS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CLXT3N7D2KUPVQ6SA2KQGAF6","name":"","sku":"763","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116584} +{"stream":"items","data":{"type":"ITEM","id":"L464VTL3L7NH4BM62D5WAV5J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Food develop","description":"Increase there present low.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"TTHM6FDJDE2XNXIO4BVZH2PB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L464VTL3L7NH4BM62D5WAV5J","name":"","sku":"1079","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116584} +{"stream":"items","data":{"type":"ITEM","id":"4XRR3FMAO5JNHGB7CP7HJYCC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Use industry","description":"Friend news summer notice bank laugh.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"HZ55TO4ZWMOJ4M25ZRUYSHRK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4XRR3FMAO5JNHGB7CP7HJYCC","name":"","sku":"613","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116585} +{"stream":"items","data":{"type":"ITEM","id":"NNNBPBAGSJLPSTBM6OJXG7ES","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Although gun","description":"Four thank each early. Fill capital person toward project subject throw.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"T4W5F5DVDIT3V5OOMKZBGQKY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NNNBPBAGSJLPSTBM6OJXG7ES","name":"","sku":"899","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116585} +{"stream":"items","data":{"type":"ITEM","id":"TJ5DFEWFBLMFKMOGADDFDGJD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Few short","description":"Government term arm look enjoy. Sit article director perhaps better rate into.","category_id":"ZLRHTMMGDRTISCIGHLCE5BFC","variations":[{"type":"ITEM_VARIATION","id":"G5E43VZCHP6KDLYAXO6A7MEQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TJ5DFEWFBLMFKMOGADDFDGJD","name":"Interest","sku":"306","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"OVB73PS6ZNJUZUQE632SJ5WR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TJ5DFEWFBLMFKMOGADDFDGJD","name":"None","sku":"306","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116585} +{"stream":"items","data":{"type":"ITEM","id":"HN62LVIUCA5ND62SIOSPYT2K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Stock right","description":"Project resource amount fall black behavior heart. Physical direction interest.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"GWFC5NRSEM3RWADOFES77OIJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HN62LVIUCA5ND62SIOSPYT2K","name":"","sku":"475","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116585} +{"stream":"items","data":{"type":"ITEM","id":"QWTHUHBFBP3TIZMKJBBQC2RI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Name between","description":"Series forget follow want moment. Final assume animal dog high page plant.","category_id":"UVLBUFBFEI3MM2OZZWUEKQOT","variations":[{"type":"ITEM_VARIATION","id":"VC2O4KCY2AWTGVBNG3S4AABZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QWTHUHBFBP3TIZMKJBBQC2RI","name":"","sku":"599","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116585} +{"stream":"items","data":{"type":"ITEM","id":"5X3D6WPGGW7F2Z67TNR2XPUV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Already tv","description":"Choose much discover ground might smile structure picture.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"YYD3H2OPUEYGPAQX27CXZ4YV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5X3D6WPGGW7F2Z67TNR2XPUV","name":"","sku":"654","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116586} +{"stream":"items","data":{"type":"ITEM","id":"N3VBO6OPSOGQR4MW5APDRATM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Record might","description":"Chance quickly floor unit bill cause.","category_id":"A7V2R2W54H3UM7TPEXFT5BMK","variations":[{"type":"ITEM_VARIATION","id":"VYXAF6VN6RE5UYA6MIXAHYRF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N3VBO6OPSOGQR4MW5APDRATM","name":"","sku":"999","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116586} +{"stream":"items","data":{"type":"ITEM","id":"VCRQJ2NKVTZGV3HLUHWRZAWY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"College role","description":"Listen carry what section agreement skin.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"YMYEEHSQDZVHV6OPXGESBYNR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VCRQJ2NKVTZGV3HLUHWRZAWY","name":"","sku":"163","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116586} +{"stream":"items","data":{"type":"ITEM","id":"5NE76P2HB2WLFXFUAUB6NJIR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Two step","description":"Reveal center strategy great pattern significant.","category_id":"MSIFD5CTOY2WFB2FAM6KI7PB","variations":[{"type":"ITEM_VARIATION","id":"XA756QS2MKVVDIBNPTUPB5TN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5NE76P2HB2WLFXFUAUB6NJIR","name":"","sku":"232","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116586} +{"stream":"items","data":{"type":"ITEM","id":"BSD2CPQFHZPPS3BUIEWVYUBN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Meeting scientist","description":"Able health policy similar. Station each movement avoid benefit your.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"WYE7HXFP7IAKQESBUWFMV27J","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BSD2CPQFHZPPS3BUIEWVYUBN","name":"Gas","sku":"486","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BIASN5HKCANTEWYDA5PRM2KK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BSD2CPQFHZPPS3BUIEWVYUBN","name":"Hear","sku":"486","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116587} +{"stream":"items","data":{"type":"ITEM","id":"P5SIS5MM7DGYOD6UACVO456N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Capital necessary","description":"Country low size any front mission speech. Television north find traditional.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"EZGGXUE5MCLVDGCQF33ZRBOL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P5SIS5MM7DGYOD6UACVO456N","name":"","sku":"574","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116587} +{"stream":"items","data":{"type":"ITEM","id":"RPKWENFF4JFQOAJJZSIC6HCC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Affect quickly","description":"Election draw tell sister. Eye third onto perhaps good religious cup.","category_id":"5TMFVVFOKG5JNVWAPOHCP7KN","variations":[{"type":"ITEM_VARIATION","id":"L7TEPWAOILI62R2J2ALKSEF3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RPKWENFF4JFQOAJJZSIC6HCC","name":"","sku":"167","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116587} +{"stream":"items","data":{"type":"ITEM","id":"Q56MQF5KDYOJ735QPRG2FTY3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bit yet","description":"Interest simple mind begin civil help. System too economy civil year small.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"KYF4MRO3W5HDYWBVA5T22PJR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Q56MQF5KDYOJ735QPRG2FTY3","name":"","sku":"182","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116587} +{"stream":"items","data":{"type":"ITEM","id":"EETL6TT57ICTVTQ6FJWQEEEX","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"About either","description":"That item term. Run final time nice catch happen character.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"2ZXLJQ2H25XU2BMQGYQFUDWT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EETL6TT57ICTVTQ6FJWQEEEX","name":"","sku":"208","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116588} +{"stream":"items","data":{"type":"ITEM","id":"ABWUCJWXDKDJKDRJ47UAWQQF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Many success","description":"Strategy important amount over protect. Finally stand know after wide bank.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"4Y46MSYMMNTG3C5KZGJCFJT4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ABWUCJWXDKDJKDRJ47UAWQQF","name":"","sku":"245","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116588} +{"stream":"items","data":{"type":"ITEM","id":"GEVTUFRLFYM3RPPJGB77QITA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"People structure","description":"Treatment claim door law guess box. Recent interest law law crime computer low.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"2IOEQI7EORFNSVCU3UQWWKZP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GEVTUFRLFYM3RPPJGB77QITA","name":"","sku":"262","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":30000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116588} +{"stream":"items","data":{"type":"ITEM","id":"MOYF7MC4N33EGVKWUYUGW77X","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tv investment","description":"Everyone near goal itself owner hotel.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"MCVXZ2QQJA62ZWZM5AXCY5J5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MOYF7MC4N33EGVKWUYUGW77X","name":"","sku":"375","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116588} +{"stream":"items","data":{"type":"ITEM","id":"23W4H4LW4STIRV2U2OMUDQCI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Enter mr","description":"Common task perhaps state need understand dark. Should decide successful.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"Q2V5UJQJP773CZHBJJETFYJA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"23W4H4LW4STIRV2U2OMUDQCI","name":"Prove","sku":"425","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"7IJAOQPC427OHOFI2QTZ6HIX","item_option_value_id":"2YB5OUWLTEHHQW7CQZ67YPP4"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FTBEV5RIAORONBQW4NWBHXWG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"23W4H4LW4STIRV2U2OMUDQCI","name":"To","sku":"425","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"7IJAOQPC427OHOFI2QTZ6HIX","item_option_value_id":"X75CT4SS45ZNM6BYGQGUHJH5"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"7IJAOQPC427OHOFI2QTZ6HIX"}]}},"emitted_at":1668290116588} +{"stream":"items","data":{"type":"ITEM","id":"TOKH4VHD4VXZTNYFRMEAZK4O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Difficult blue","description":"Themselves thought idea. Manager oil trade nature skill yard year.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"PXHQKS2GDA4GKCSMFIQGQUJA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TOKH4VHD4VXZTNYFRMEAZK4O","name":"","sku":"589","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116589} +{"stream":"items","data":{"type":"ITEM","id":"PYFZQJ3LU34CSEHLTR2UYCAS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Center manage","description":"Recent leave civil back yet data value sell.","category_id":"APYNRBQERO33TQO2GQS4QPQ3","variations":[{"type":"ITEM_VARIATION","id":"TRCE534QM72LODALIBMZR6LF","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PYFZQJ3LU34CSEHLTR2UYCAS","name":"Daughter","sku":"1061","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PIMUAVPQFLOBW2CEXWIQSVLH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PYFZQJ3LU34CSEHLTR2UYCAS","name":"Close","sku":"1061","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116589} +{"stream":"items","data":{"type":"ITEM","id":"LQ2L7MDIPMPR6WBJQULPFHJI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tonight relationship","description":"Per member material. Language country program plant drive age.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"TNUYS2YOWTCJVVIBWXKWVT6Z","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LQ2L7MDIPMPR6WBJQULPFHJI","name":"Want","sku":"966","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BSKK53QQLFJNSTGBWM2NJGPS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LQ2L7MDIPMPR6WBJQULPFHJI","name":"Instead","sku":"966","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116589} +{"stream":"items","data":{"type":"ITEM","id":"ABFWSNNLDHUCZLO26NV6S6EH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"They allow","description":"Reveal want its fill increase view. Reality direction usually several.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"6XHF3JVBLYRS7BPRM4DDYPFM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ABFWSNNLDHUCZLO26NV6S6EH","name":"Good","sku":"433","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"WYRAOA4O55VLRDRIQU27B4ET","item_option_value_id":"G5JSJ5RVERZ3C6VD6XRFKGV5"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QHLJPPVTVTJYYNXD7POY7AUL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ABFWSNNLDHUCZLO26NV6S6EH","name":"Company","sku":"433","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"WYRAOA4O55VLRDRIQU27B4ET","item_option_value_id":"AYYLFYG7OR7EZMJ4GSBMA2I3"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"WYRAOA4O55VLRDRIQU27B4ET"}]}},"emitted_at":1668290116589} +{"stream":"items","data":{"type":"ITEM","id":"N4JML5WXX5FBZVRY2PLEF57K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"To evidence","description":"No lay including art really. See father economic meeting.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"K5EJQURSXUP3IKAII6NSJMNX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"N4JML5WXX5FBZVRY2PLEF57K","name":"","sku":"435","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116590} +{"stream":"items","data":{"type":"ITEM","id":"SMULES7WNEXUZMPK5QBJ7V2R","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Customer if","description":"Term hot provide want white raise you answer.","category_id":"T6B5QL74PO6CROXESHQZFVIY","variations":[{"type":"ITEM_VARIATION","id":"JWXMJA4IPNG3SJH44WLN7UPM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SMULES7WNEXUZMPK5QBJ7V2R","name":"Mean","sku":"931","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6IK6UM4Y45V43VNG46O7556S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SMULES7WNEXUZMPK5QBJ7V2R","name":"Science","sku":"931","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116590} +{"stream":"items","data":{"type":"ITEM","id":"FX45MCA2JNAWXW7MOGVINGUI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Executive teacher","description":"Career former indicate word character seat.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"2R3E6QXABHM26JAGPM3CMHGH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FX45MCA2JNAWXW7MOGVINGUI","name":"","sku":"247","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116590} +{"stream":"items","data":{"type":"ITEM","id":"LRX3JXBRQ3ZLYWKET6XKXZBG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Own raise","description":"Gun health thousand college truth tree. Issue entire hard want lawyer so.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"2ULCONIARFFN6453E372363W","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LRX3JXBRQ3ZLYWKET6XKXZBG","name":"","sku":"408","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116590} +{"stream":"items","data":{"type":"ITEM","id":"IP6SIGALNVILLTPJEY4XEPYL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Director career","description":"Director happen majority test nature someone new final. Dream bar run impact.","category_id":"GBD7UK6BE4CJ7R2A7P7MFGX6","variations":[{"type":"ITEM_VARIATION","id":"E4MIMRUKDR64GWQT4HK7DWDU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IP6SIGALNVILLTPJEY4XEPYL","name":"","sku":"447","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116591} +{"stream":"items","data":{"type":"ITEM","id":"NNMT3LZZCUIUGCW44NCZRBQY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Manage paper","description":"Because similar either tough end six. Outside instead sure produce effort half.","category_id":"M6BZJRSPJKZDU5EELP4HALZW","variations":[{"type":"ITEM_VARIATION","id":"GHVESJOA32QRYJG4W4H6YJ26","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NNMT3LZZCUIUGCW44NCZRBQY","name":"Require","sku":"736","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BLIKSG35OBWRURVJK3FVXW4R","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NNMT3LZZCUIUGCW44NCZRBQY","name":"Environment","sku":"736","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":6900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116591} +{"stream":"items","data":{"type":"ITEM","id":"DMYDGAKXQBTJIRHPDKY423Q2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Body group","description":"Spend TV bill test quickly this southern national.","category_id":"DFESE72NCWVZ6FSMPSV62JK3","variations":[{"type":"ITEM_VARIATION","id":"RLHF65FEUG43QK6J6PVD6W5H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DMYDGAKXQBTJIRHPDKY423Q2","name":"Special","sku":"666","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YHGKA33OL4VYMZO5KM7TU2AS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DMYDGAKXQBTJIRHPDKY423Q2","name":"Beautiful","sku":"666","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":11800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116591} +{"stream":"items","data":{"type":"ITEM","id":"IIZLNYSOYB423GEOKGTMCERA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Because join","description":"Friend son forward. Animal forget boy difficult.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"YT2DQH2CFHI7MTKQMQTCWYO7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IIZLNYSOYB423GEOKGTMCERA","name":"Many","sku":"809","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":14700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"CLR6IBWHYCOAZRQUP5DCMJ44","item_option_value_id":"B22ASK2YONOOUDKX5FGREBON"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TBQQSCVJCY5KVLHYA5NZZGGW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IIZLNYSOYB423GEOKGTMCERA","name":"With","sku":"809","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"CLR6IBWHYCOAZRQUP5DCMJ44","item_option_value_id":"F7CQ666LULRDMSXHXOQDLA3A"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"CLR6IBWHYCOAZRQUP5DCMJ44"}]}},"emitted_at":1668290116591} +{"stream":"items","data":{"type":"ITEM","id":"Y2D66K7IA5K37V2G4ZMH35L3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Student bed","description":"Gun claim share court child others. Face well real cell certainly.","category_id":"5TSNRV2G6PJXFFHNHYPUWJWS","variations":[{"type":"ITEM_VARIATION","id":"POSV42MVHYKKPG3IAUXYGLD6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y2D66K7IA5K37V2G4ZMH35L3","name":"","sku":"1047","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116592} +{"stream":"items","data":{"type":"ITEM","id":"4D3YO6QXSPT664QDRIK6335N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Soldier letter","description":"Son responsibility film key professor feeling. Nor protect affect.","category_id":"HF7OW6YKDP376YIQNSB4A7DO","variations":[{"type":"ITEM_VARIATION","id":"V6MDB52RC242E46TTXHVGYSO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4D3YO6QXSPT664QDRIK6335N","name":"","sku":"260","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116592} +{"stream":"items","data":{"type":"ITEM","id":"7CYTQZFXNABU77XTL75VSHSJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Father special","description":"Point concern pull. Community finish impact effect claim reality magazine.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","variations":[{"type":"ITEM_VARIATION","id":"V6IIWQFXH67HNRQMMJZZL6NC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7CYTQZFXNABU77XTL75VSHSJ","name":"","sku":"519","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116592} +{"stream":"items","data":{"type":"ITEM","id":"ASEXR75NTLSU4GGKEZOB5CSG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Several late","description":"Live its science cost. Talk wish you anyone level people true water.","category_id":"DRXMDFZHZAXFDJ2LQU3EZ34J","variations":[{"type":"ITEM_VARIATION","id":"ZTZOTZXDHRTHK2P2XCELN3Q3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ASEXR75NTLSU4GGKEZOB5CSG","name":"Success","sku":"841","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KVMWQXBCCVJHYMQ3JJ75RO2F","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ASEXR75NTLSU4GGKEZOB5CSG","name":"When","sku":"841","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116592} +{"stream":"items","data":{"type":"ITEM","id":"GRDIIIQ43VAPZ4XTCBKUS2RR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Lose call","description":"Practice move name stuff gun sort major. Radio think chance peace federal.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"M6EJBT5DMMPXFEDZLB7UNPC7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GRDIIIQ43VAPZ4XTCBKUS2RR","name":"Develop","sku":"1073","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":9000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"MWNPKB3K2P57RLTP32OR7G6C","item_option_value_id":"SGKJLXURE24XOHJWGVTEAREV"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"CK6LBUIQNG4AJZTCR43I6RID","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GRDIIIQ43VAPZ4XTCBKUS2RR","name":"Notice","sku":"1073","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"MWNPKB3K2P57RLTP32OR7G6C","item_option_value_id":"5ZQ2RABJT27BZCNX3TTQT5YG"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"MWNPKB3K2P57RLTP32OR7G6C"}]}},"emitted_at":1668290116592} +{"stream":"items","data":{"type":"ITEM","id":"EQ5QAS7XZANJQ6B6YGSDDGOR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Surface key","description":"Officer democratic power down despite clearly. Our light party.","category_id":"NLHVVB5MEK375LZAGY5PDOVB","variations":[{"type":"ITEM_VARIATION","id":"OEBNIMI3J4T6YGMF3EMUC3JP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EQ5QAS7XZANJQ6B6YGSDDGOR","name":"","sku":"352","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116593} +{"stream":"items","data":{"type":"ITEM","id":"Y6D47UEBIFUGNGDWTV63QLYT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Involve something","description":"Say walk type direction military.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"I3OWDHMBIXZMKF2E5YSUZ62C","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y6D47UEBIFUGNGDWTV63QLYT","name":"","sku":"580","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116593} +{"stream":"items","data":{"type":"ITEM","id":"2FYZWCOCUHQLCP6JTB5AWQJE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Option yet","description":"Cost however source phone career western free. Show sound all race southern.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"AAOC66LVWEI62FHJMRP7YDAA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2FYZWCOCUHQLCP6JTB5AWQJE","name":"Suggest","sku":"1025","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":16200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"U7ARVPOLTI7T3HDRNBO4KBI2","item_option_value_id":"SQ6UEJRJERP35LA5UEO7NKVM"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7P25FTXHTQAC4BFACCA25JON","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2FYZWCOCUHQLCP6JTB5AWQJE","name":"Teacher","sku":"1025","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"U7ARVPOLTI7T3HDRNBO4KBI2","item_option_value_id":"7Z37CEERYTSLPIDOSJQRACTE"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"U7ARVPOLTI7T3HDRNBO4KBI2"}]}},"emitted_at":1668290116593} +{"stream":"items","data":{"type":"ITEM","id":"E27ZHSK4OTLCFR5FHOAD372I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Late what","description":"Fast price rest miss. Many radio save deal or. Friend worker view event.","category_id":"DGT73LVUMJBAHSSJ7B2KUET5","variations":[{"type":"ITEM_VARIATION","id":"4FBQHWUTKOSC5B3XZJN3Y7KC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E27ZHSK4OTLCFR5FHOAD372I","name":"","sku":"152","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116593} +{"stream":"items","data":{"type":"ITEM","id":"QK4OCQ2BQZ7RIIAQP22BDVRR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Chance citizen","description":"Allow approach cover office imagine care free. Every see body.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"5PA3O7TH46VKF727Z7ZI2BB3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QK4OCQ2BQZ7RIIAQP22BDVRR","name":"Assume","sku":"377","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":5800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"4T3WNL4TVRJWAXVKJMULJO3T","item_option_value_id":"PUXS33C4TIJJVQIXMS5WCEPK"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QMPEOQSV7L6BJGZVG6ZUK7GC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QK4OCQ2BQZ7RIIAQP22BDVRR","name":"Home","sku":"377","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"4T3WNL4TVRJWAXVKJMULJO3T","item_option_value_id":"RS2ZX6KRBFQWQ56AKFAFYXAR"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"4T3WNL4TVRJWAXVKJMULJO3T"}]}},"emitted_at":1668290116593} +{"stream":"items","data":{"type":"ITEM","id":"YSQON4SPCJ4SUCVT6DMZF5PM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Get five","description":"Actually explain student service room whether. Red religious feel.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"QZKXQKTHIFMPMZHQLDUTFVPH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YSQON4SPCJ4SUCVT6DMZF5PM","name":"","sku":"563","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116594} +{"stream":"items","data":{"type":"ITEM","id":"JN5O5QLWP4TVPGUYO5ZDWUAM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Education rate","description":"Effect state guy happy almost social. Think open already road now final I.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"KFL5T5CX3C7HAD2YBYO42EZV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JN5O5QLWP4TVPGUYO5ZDWUAM","name":"","sku":"925","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116594} +{"stream":"items","data":{"type":"ITEM","id":"JFMPFJCAGSHD7YD5UIUZYDZA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Walk shake","description":"True wrong offer music right he.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"3HQ5BBLNDFAJZDC4XXW57QM4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JFMPFJCAGSHD7YD5UIUZYDZA","name":"","sku":"955","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116594} +{"stream":"items","data":{"type":"ITEM","id":"PCJPY7TKDBNTVRDW2QT43ZJM","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"So check","description":"Time by fly general mind agree recognize remember. Doctor doctor believe over.","category_id":"ILM3ZVIUU6KRQMSQ2VN5UADV","variations":[{"type":"ITEM_VARIATION","id":"VAAF2J7PVN6BIGXJW5WAP46S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PCJPY7TKDBNTVRDW2QT43ZJM","name":"","sku":"1023","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116594} +{"stream":"items","data":{"type":"ITEM","id":"ZF7IYN2FM3DJNDPEPEZTMZER","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Citizen only","description":"Apply above learn point. Live field fine yourself performance talk.","category_id":"SV7ZVR63IIN5Z47EVWBSSO3E","variations":[{"type":"ITEM_VARIATION","id":"ZXURW5TD4PA3UGNTB7NGIVJC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZF7IYN2FM3DJNDPEPEZTMZER","name":"Surface","sku":"186","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"DBPAAQBQ66INSVSV3DLRUJMB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZF7IYN2FM3DJNDPEPEZTMZER","name":"Owner","sku":"186","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116594} +{"stream":"items","data":{"type":"ITEM","id":"TFRSE27RV5WSE3YDT74KPROJ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Industry prevent","description":"Hair face everything. Laugh write discover stage.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"HKVE32RHKIDUJPEJHIY55EWH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TFRSE27RV5WSE3YDT74KPROJ","name":"","sku":"499","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116594} +{"stream":"items","data":{"type":"ITEM","id":"47HLASR5TRCGWMY7QA4BDNLQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Thousand television","description":"Remain miss themselves medical key wrong wind.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"MLMSPYA2SOCMWI2I7CMIQOI6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"47HLASR5TRCGWMY7QA4BDNLQ","name":"So","sku":"551","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IERUTIOGVVYFPIKSIAMHOEED","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"47HLASR5TRCGWMY7QA4BDNLQ","name":"Sign","sku":"551","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116595} +{"stream":"items","data":{"type":"ITEM","id":"Y2TQBHCPTKJIEJ3V2DAVUSJS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Deal wrong","description":"While whether political cause. Design trial know dinner.","category_id":"X77EX5ETNYO2R5WXEA55K4KR","variations":[{"type":"ITEM_VARIATION","id":"ACCVJ4JTYNPEYUUBBCWQFYYT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y2TQBHCPTKJIEJ3V2DAVUSJS","name":"","sku":"808","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116595} +{"stream":"items","data":{"type":"ITEM","id":"NKYXDQU75WR4N4XF4ES6QBHT","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Difficult attention","description":"Democrat staff blue president poor. Likely between and three kind.","category_id":"VLTSYPX33Q6SOCZZ7BVKM3CC","variations":[{"type":"ITEM_VARIATION","id":"RMCDXTNW4CKO2JJ5FKPIG37I","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NKYXDQU75WR4N4XF4ES6QBHT","name":"","sku":"822","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116595} +{"stream":"items","data":{"type":"ITEM","id":"RFSJAHWUQ3BXDLVS7XJEH7VH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Step wait","description":"Sport activity result way spring. Young grow there may hard part trial.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"WGMJW6CFNZFOCP7SZDZEMXLA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RFSJAHWUQ3BXDLVS7XJEH7VH","name":"Certainly","sku":"896","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"Q63LMF6XTFDBJOOMQW7DGW6K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RFSJAHWUQ3BXDLVS7XJEH7VH","name":"Bad","sku":"896","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116595} +{"stream":"items","data":{"type":"ITEM","id":"DRXYR4L36FHZEJBVSKEC6GKZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Radio need","description":"Most owner front just those plant great.","category_id":"FIJJXETENFNYLAV52EJPAHR5","variations":[{"type":"ITEM_VARIATION","id":"QODQY7QLCKPO72YKJKDQIBBB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DRXYR4L36FHZEJBVSKEC6GKZ","name":"","sku":"119","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116595} +{"stream":"items","data":{"type":"ITEM","id":"QWBAYAABR2TYA6WDIFBJWLZW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Treatment mind","description":"Sell its manager walk simple no matter forget. Section total forget.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"LH66UZTRAC2PQLZTJW6BQRY5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QWBAYAABR2TYA6WDIFBJWLZW","name":"","sku":"434","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116596} +{"stream":"items","data":{"type":"ITEM","id":"HHT6SKLCPJA2E5E7KG3KCX5S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fast travel","description":"Particularly role human. Explain newspaper staff exactly new economy more.","category_id":"QG5QSLYW6LEYZXUI2NFNSFGF","variations":[{"type":"ITEM_VARIATION","id":"EVWWDTGQXQ3HAU7OEC6WBF6B","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HHT6SKLCPJA2E5E7KG3KCX5S","name":"Population","sku":"481","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"CM4A2QB66IGA37Z5CVUXZVLY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HHT6SKLCPJA2E5E7KG3KCX5S","name":"Ready","sku":"481","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":14000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116596} +{"stream":"items","data":{"type":"ITEM","id":"3EF4YFWTN7DBYT6JX42P4NN2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Red weight","description":"Trade discover together evening thank hair smile close. Our his score under.","category_id":"7AFLZ7ZUI4NBT24GHBJMXANE","variations":[{"type":"ITEM_VARIATION","id":"KJWD2HA3HB2EUJHEZN253LLW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3EF4YFWTN7DBYT6JX42P4NN2","name":"","sku":"557","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116596} +{"stream":"items","data":{"type":"ITEM","id":"T2NJ5AQOL6K7Z4E3JZSDTKER","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Country certain","description":"Poor sound six hair soldier Republican common. Life week fear walk improve.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"JX7LLIYEJSID7LLOLVQYURNV","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T2NJ5AQOL6K7Z4E3JZSDTKER","name":"","sku":"619","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116596} +{"stream":"items","data":{"type":"ITEM","id":"5POJFFQDNEPAXRSJDP7R7RLH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"List movie","description":"Cup apply always it against prepare. Thus right suffer very compare dark write.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"VQV2PXB7PF6AIIDHCTXUDXJO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5POJFFQDNEPAXRSJDP7R7RLH","name":"","sku":"764","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116596} +{"stream":"items","data":{"type":"ITEM","id":"KORPA4SJXQCBWPNRKD7CA466","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Adult a","description":"Economic short billion Mr become increase could.","category_id":"MIGXNUZFGOZLRG7UT6LWCPIA","variations":[{"type":"ITEM_VARIATION","id":"AR4763LXE7L6O3HU3B4TUYUY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KORPA4SJXQCBWPNRKD7CA466","name":"","sku":"813","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116596} +{"stream":"items","data":{"type":"ITEM","id":"F3O7CGNANL67SA5JODAQ7R7K","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Field quality","description":"Where role employee east effort matter series.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"LFF4LPMSZ64FCEUPHBG6IWJD","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F3O7CGNANL67SA5JODAQ7R7K","name":"","sku":"605","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116597} +{"stream":"items","data":{"type":"ITEM","id":"RGR3CSRMAWQNYYEQC4VWJA6E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Always generation","description":"Paper national fast understand put yet sister response.","category_id":"WDPS6ZRWTED7A7DPFVJJQMPE","variations":[{"type":"ITEM_VARIATION","id":"GAYOR47AMPWVNP7O6ZEKHSQG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RGR3CSRMAWQNYYEQC4VWJA6E","name":"","sku":"980","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116597} +{"stream":"items","data":{"type":"ITEM","id":"36I5SHTP5R56LGEFUBK7BYYA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Film give","description":"But similar service. World production tough perform five anyone.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"RDWS2T2J4RBYR5GXNA73RQOG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"36I5SHTP5R56LGEFUBK7BYYA","name":"","sku":"494","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116597} +{"stream":"items","data":{"type":"ITEM","id":"AOFDAXCG3IZ3NNYGZRYHDF5H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hotel several","description":"Through loss song cup. Home blue education you alone.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"R6M3GBEG7MH4L6UPA7USM6TN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AOFDAXCG3IZ3NNYGZRYHDF5H","name":"","sku":"533","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116597} +{"stream":"items","data":{"type":"ITEM","id":"LRZS6NUMQKNUDILNEAB4VS7N","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Do nation","description":"There theory movement pattern item where. Population inside focus television.","category_id":"XLI4ZDKFDMNHEF6P7UHDVGT4","variations":[{"type":"ITEM_VARIATION","id":"UWMS3BFI4UIE6OLHGODNRHZL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LRZS6NUMQKNUDILNEAB4VS7N","name":"","sku":"983","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116597} +{"stream":"items","data":{"type":"ITEM","id":"P42NGSYQQXSZ3Y3NWK4WT24O","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"This short","description":"Or term week trouble near as sit baby. Well level value within.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"GSFZB5DJQTYUQ2VGX27E5SRR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P42NGSYQQXSZ3Y3NWK4WT24O","name":"Themselves","sku":"761","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TBPKTIJJVW7IPJTL5FV2VHE3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P42NGSYQQXSZ3Y3NWK4WT24O","name":"Official","sku":"761","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":18900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116597} +{"stream":"items","data":{"type":"ITEM","id":"JZB2BND3K56LXRW54OER35CK","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Spring person","description":"Two industry visit worker.","category_id":"BKCCRASGMLLS6IWQ2W6SLT2A","variations":[{"type":"ITEM_VARIATION","id":"5N5N74KC4WCZKS765TFT7XHI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JZB2BND3K56LXRW54OER35CK","name":"","sku":"768","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116598} +{"stream":"items","data":{"type":"ITEM","id":"BXKMU6BCS7IJ5MWFTOHPZXFR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yes already","description":"Sea point because whose teacher wish. Wife story production order.","category_id":"SAGHK26FXLCVAYOAX5PX6OID","variations":[{"type":"ITEM_VARIATION","id":"JIDR6WQAYDEBNZL3RF7SNP6S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BXKMU6BCS7IJ5MWFTOHPZXFR","name":"","sku":"964","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116598} +{"stream":"items","data":{"type":"ITEM","id":"KNPDHSVFTBH5RMKJ4PEYHVBQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"May against","description":"Ever condition agreement health most task get. Management history debate carry.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"XQC3ZS7BCOETZ2I6ZTJKMSQW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KNPDHSVFTBH5RMKJ4PEYHVBQ","name":"","sku":"264","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116598} +{"stream":"items","data":{"type":"ITEM","id":"DMXIYVSMHGJNMCRJBXHGZVMC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Throw middle","description":"Large night top. Lead either dream spring cup.","category_id":"XSBOX6V36HYM5VHUU2PWAK4M","variations":[{"type":"ITEM_VARIATION","id":"GEZUPXUXLJILPAKJUVCBIFT5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DMXIYVSMHGJNMCRJBXHGZVMC","name":"","sku":"568","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116598} +{"stream":"items","data":{"type":"ITEM","id":"LPWU3EJRV6T3BBGQGLO4TAGG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Into to","description":"Although nothing class improve. Number forget town information somebody reduce.","category_id":"QMW6NPGADOC6Y7TPYQKFQ6PG","variations":[{"type":"ITEM_VARIATION","id":"SRSVUEBO3V37X5TGXPQW4RFS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LPWU3EJRV6T3BBGQGLO4TAGG","name":"Strategy","sku":"577","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":27400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XZLAEDCQX3CGWOVFHCY4YIS4","item_option_value_id":"J5WBSHT2RUWA4VKSTA5HDHDM"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"GFGQOKOKLH33PPMBFMKZRIYH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LPWU3EJRV6T3BBGQGLO4TAGG","name":"The","sku":"577","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XZLAEDCQX3CGWOVFHCY4YIS4","item_option_value_id":"53MHQL2W7BPMAKVNU3EOAH4O"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"XZLAEDCQX3CGWOVFHCY4YIS4"}]}},"emitted_at":1668290116598} +{"stream":"items","data":{"type":"ITEM","id":"XXWHROFJSBJPLWOUT7E3DHRP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Trouble really","description":"Oil anyone actually center behind challenge social.","category_id":"5BP5IWSZMBRLUIZCZQ2RSXT3","variations":[{"type":"ITEM_VARIATION","id":"7UWH5GS4MSYENKLIRIM3XLDB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XXWHROFJSBJPLWOUT7E3DHRP","name":"Decide","sku":"617","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":20000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"63UUXINLTLL2P22WXJOIZCTB","item_option_value_id":"WV7WBDNUBUZGDUJ6U6J4XMP4"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JSTHFIHA2RGOGFFNSDP6TXMY","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XXWHROFJSBJPLWOUT7E3DHRP","name":"Area","sku":"617","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"63UUXINLTLL2P22WXJOIZCTB","item_option_value_id":"KUI7KYSFTEJQ5OW6N6RFD7HG"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"63UUXINLTLL2P22WXJOIZCTB"}]}},"emitted_at":1668290116598} +{"stream":"items","data":{"type":"ITEM","id":"5FWWTGMNH2QZ6J2KPBX2O7PL","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Major system","description":"Understand pay despite. Over direction finally per style me.","category_id":"OUOYZZ2UM6PZK3NWLFQKTKKG","variations":[{"type":"ITEM_VARIATION","id":"ZXWTCB22KPQS3XCX4C2WBOEU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5FWWTGMNH2QZ6J2KPBX2O7PL","name":"","sku":"655","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116599} +{"stream":"items","data":{"type":"ITEM","id":"DOGUZVI3AKL56CTYSBMF2COH","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Attack wrong","description":"Official far upon garden specific man meeting.","category_id":"Y2YTTMOWV4DOS5IJMJZOJLA4","variations":[{"type":"ITEM_VARIATION","id":"KLVJYLV2BL6WSDEQDQDEYJUP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DOGUZVI3AKL56CTYSBMF2COH","name":"","sku":"347","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116599} +{"stream":"items","data":{"type":"ITEM","id":"S5R3N367ERMMTH2MPW55533E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Seem end","description":"Thousand field street walk after hotel.","category_id":"AKQKQJA3BJOZ3XGOYLE2USNK","variations":[{"type":"ITEM_VARIATION","id":"ILGOQYUCGZZLXSPCFT67FMCN","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"S5R3N367ERMMTH2MPW55533E","name":"","sku":"404","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116599} +{"stream":"items","data":{"type":"ITEM","id":"DHTR2XOY7NTJLLOAG2ZV54EZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"During capital","description":"Since act interest training trouble. Hard level each alone.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"FVHNJVFCSSV4ETI65LDT5SWO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DHTR2XOY7NTJLLOAG2ZV54EZ","name":"","sku":"773","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116599} +{"stream":"items","data":{"type":"ITEM","id":"OXKWG3HJ5LP7HW7CVACYAXRB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Turn ready","description":"Least activity one which. That see minute morning game.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"TBCQUCH5MJEJRRC4VHXE5NMW","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OXKWG3HJ5LP7HW7CVACYAXRB","name":"Reach","sku":"777","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":25200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"CD2LEXBYBFZIYKM6ZLRPZC4M","item_option_value_id":"YEMVPHWMZADWOQXRVE7WYTET"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7WBAUM24UKKB54UD7S5X4QIO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OXKWG3HJ5LP7HW7CVACYAXRB","name":"Federal","sku":"777","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"CD2LEXBYBFZIYKM6ZLRPZC4M","item_option_value_id":"45ZZE5P4SDSXOJ7JKMQWI6J3"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"CD2LEXBYBFZIYKM6ZLRPZC4M"}]}},"emitted_at":1668290116599} +{"stream":"items","data":{"type":"ITEM","id":"ZJGC7URANJP4ADLE5GDYRIHX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Top hand","description":"In husband later set movie. Head none travel physical.","category_id":"KZYRRTE66AFWHCK4ASGSJBZB","variations":[{"type":"ITEM_VARIATION","id":"D46TIXMHWHTZXREEWBMZ33KA","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZJGC7URANJP4ADLE5GDYRIHX","name":"","sku":"427","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116599} +{"stream":"items","data":{"type":"ITEM","id":"55TR2Q5LBYSMR62G3XOHHXM7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Include western","description":"Attention everyone shoulder interesting win find take.","category_id":"KNXNC6NOIC6XFMEL2WBRV4D6","variations":[{"type":"ITEM_VARIATION","id":"BXM7E5PMN5EF5PNDKMYDRMHO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"55TR2Q5LBYSMR62G3XOHHXM7","name":"","sku":"527","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116600} +{"stream":"items","data":{"type":"ITEM","id":"C7NWC4ITZ4VPXKTK4B4YEPYZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Back fire","description":"Laugh perform collection evening. Dinner air increase memory.","category_id":"NVZICQ4XRU7SFCEPR7YXPVWP","variations":[{"type":"ITEM_VARIATION","id":"VPDOTPGU44XNSC4YGCRZSXNZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C7NWC4ITZ4VPXKTK4B4YEPYZ","name":"Either","sku":"531","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"I7KF67BXJD5JRZE7PAASBA77","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C7NWC4ITZ4VPXKTK4B4YEPYZ","name":"Structure","sku":"531","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":1200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116600} +{"stream":"items","data":{"type":"ITEM","id":"R3LHF72KRNSIYBOGQZS6L6GU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Score plan","description":"Management green avoid join her they standard car.","category_id":"UCP4VSGW3BUUCWSEDOOYFP5D","variations":[{"type":"ITEM_VARIATION","id":"6CSHL52HB3IKFASWGWZHEZAX","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"R3LHF72KRNSIYBOGQZS6L6GU","name":"","sku":"893","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116600} +{"stream":"items","data":{"type":"ITEM","id":"3CTUB7PPWEHYMIMUQPCZ5A7H","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Change art","description":"Officer sister like. Parent art such build.","category_id":"EWUMKEPVWFNF7XG64TYYJ7B3","variations":[{"type":"ITEM_VARIATION","id":"2N7W5HIS4T5XWYHBNUX4IMK3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3CTUB7PPWEHYMIMUQPCZ5A7H","name":"Technology","sku":"926","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YTY5E6G37E5S4RVSXDPLTBO6","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3CTUB7PPWEHYMIMUQPCZ5A7H","name":"Message","sku":"926","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":1200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116600} +{"stream":"items","data":{"type":"ITEM","id":"UX3SUFV3BYJ5HAWJ2IOATU46","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Dark cup","description":"Statement public represent public.","category_id":"G254DMXKLHIMCDXBZM6GZSPW","variations":[{"type":"ITEM_VARIATION","id":"N6BZCYHGJ22EAD3BEUFM7K5T","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UX3SUFV3BYJ5HAWJ2IOATU46","name":"","sku":"108","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116600} +{"stream":"items","data":{"type":"ITEM","id":"C4AGUYFOCIWOPG4FLXZBHNCB","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sport near","description":"Account staff blood condition lot item worry. Whom of sea ask knowledge.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"XFVYKZ7XEDVURZWTBBMQZWG2","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C4AGUYFOCIWOPG4FLXZBHNCB","name":"","sku":"179","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116600} +{"stream":"items","data":{"type":"ITEM","id":"TYMI7SKLCGWAZO62MRDTHMS5","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Decide onto","description":"Huge teach religious statement use. Former cell care understand current.","category_id":"RDKPWYO7NU62WZZA7MJPCHDJ","variations":[{"type":"ITEM_VARIATION","id":"YHH5D5KDC6JTTDWVKYNVK7HG","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TYMI7SKLCGWAZO62MRDTHMS5","name":"","sku":"695","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116601} +{"stream":"items","data":{"type":"ITEM","id":"XKA7FNRY23N4JOQMUI2UWNAZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Outside activity","description":"Tree resource same business fund.","category_id":"QRG5B4NQWYEXXS2K4D5TJTOU","variations":[{"type":"ITEM_VARIATION","id":"KU5WRFG6RVKND2VMRNSYKXTI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XKA7FNRY23N4JOQMUI2UWNAZ","name":"","sku":"268","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116601} +{"stream":"items","data":{"type":"ITEM","id":"V6C2EFOJPUKXAIZLM5BBOCTS","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Member six","description":"Should relate itself yes discussion realize leader.","category_id":"3AO6QO4AU42HG23S27OQRNC2","variations":[{"type":"ITEM_VARIATION","id":"M7WSJOXT6IW63CEAAOQIKMTC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"V6C2EFOJPUKXAIZLM5BBOCTS","name":"","sku":"378","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116601} +{"stream":"items","data":{"type":"ITEM","id":"XNS4STMCO26RISSPEBZHKEPI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Participant admit","description":"Before need outside space kind develop water.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"IPALETZ2QJK5AGIZ2HAYAL2L","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XNS4STMCO26RISSPEBZHKEPI","name":"","sku":"432","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116601} +{"stream":"items","data":{"type":"ITEM","id":"CS3S72FLQGQA4MP5IGFXWMEP","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Agency action","description":"Born important stuff. Check special policy treat information.","category_id":"R5LO4QTTY65TKRM56GCGGWO4","variations":[{"type":"ITEM_VARIATION","id":"LO5WQFTC7O5MVSDQK2K6F53E","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CS3S72FLQGQA4MP5IGFXWMEP","name":"","sku":"474","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116601} +{"stream":"items","data":{"type":"ITEM","id":"SVQW7LB7XS5DJI3BQLLRFW7F","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:25:28.608Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Accept television","description":"Number mother sell rate institution vote. Policy attorney save they bag.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"SIIBJ7ULJ4OC64OI2NP64BRR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SVQW7LB7XS5DJI3BQLLRFW7F","name":"","sku":"492","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116601} +{"stream":"items","data":{"type":"ITEM","id":"MXEXFYWNIQBH2W2TQRQDLFOU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Art investment","description":"Report thank real born.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"RMNC6ELT7NPTDZUGFUPXBI44","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MXEXFYWNIQBH2W2TQRQDLFOU","name":"","sku":"493","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116601} +{"stream":"items","data":{"type":"ITEM","id":"F5KIMK5XNUGV6QW645PI3VRE","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Quality popular","description":"Show former vote network itself. Good fly appear cell gas.","category_id":"2UOAOCSMBZJYAJBB2FKNFJMS","variations":[{"type":"ITEM_VARIATION","id":"FKE2SZFQLV3XR6TFCE37MZDI","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F5KIMK5XNUGV6QW645PI3VRE","name":"Hundred","sku":"606","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JCWSYCXW5WTD63RS5BF5IJEZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F5KIMK5XNUGV6QW645PI3VRE","name":"Whole","sku":"606","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116602} +{"stream":"items","data":{"type":"ITEM","id":"6QUFFNWTQGYU7RVWUGTTCJSZ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Form attorney","description":"He than data scientist. Ago production director significant nor west.","category_id":"AOAUZ4LWYM4IZ62NXEMO4ADN","variations":[{"type":"ITEM_VARIATION","id":"6IY452V2T67YOT7QF7763WB4","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6QUFFNWTQGYU7RVWUGTTCJSZ","name":"","sku":"880","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116602} +{"stream":"items","data":{"type":"ITEM","id":"CMWPUUYA2Y5XBOA7XYV2AHU7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Whether rate","description":"But market west fire. Figure size coach.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"MYYYP7CQI4LW6MUXOOKXGUON","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CMWPUUYA2Y5XBOA7XYV2AHU7","name":"","sku":"1074","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116602} +{"stream":"items","data":{"type":"ITEM","id":"67RQK36C4JBZLWC27L4JEJ6S","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"The hand","description":"Happy million try never role once. Security maintain explain bad others ahead.","category_id":"2CUO73D3VYI3GPSRCPW3C3QO","variations":[{"type":"ITEM_VARIATION","id":"DVREYOUDKMEDPXZYOPHV6W26","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"67RQK36C4JBZLWC27L4JEJ6S","name":"","sku":"213","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116602} +{"stream":"items","data":{"type":"ITEM","id":"DP35W4RTMORNRGWPPBVB47Y3","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hair indicate","description":"Improve economic color beautiful discover improve common training.","category_id":"QEIEB6ZJQFGBA2PABWZP2NKP","variations":[{"type":"ITEM_VARIATION","id":"PHMWMUPAKPY7IQROWFZSPFM7","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DP35W4RTMORNRGWPPBVB47Y3","name":"","sku":"958","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116602} +{"stream":"items","data":{"type":"ITEM","id":"QXL5I425SHPYKV4HZL4W7AMC","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Indeed feel","description":"Hope general through lead smile everybody.","category_id":"XI2US2E52E2Z4JPTA4YKTAWG","variations":[{"type":"ITEM_VARIATION","id":"VTNKVZ3XDMYADW7HGU32IKNQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QXL5I425SHPYKV4HZL4W7AMC","name":"Reach","sku":"436","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"NGXTJCYGKR6Z5ZR5AK3OC226","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QXL5I425SHPYKV4HZL4W7AMC","name":"Near","sku":"436","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":13700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116602} +{"stream":"items","data":{"type":"ITEM","id":"VIVM3ANNXBPGPYZMBL4DATTO","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Never war","description":"Care avoid chance crime. Only medical check wrong old its recently sometimes.","category_id":"CDYXXVGUQODXIV5LJWJZVFIF","variations":[{"type":"ITEM_VARIATION","id":"ST76OL27N32PG53NRZRBIKAQ","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VIVM3ANNXBPGPYZMBL4DATTO","name":"","sku":"515","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116603} +{"stream":"items","data":{"type":"ITEM","id":"FPT7UBWCOT2RFO2NO4YAV7AR","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Information help","description":"Space reveal about environmental according. Down mother fear hard when that.","category_id":"LHRLRN4BZ7EUVN5NMREPZDDG","variations":[{"type":"ITEM_VARIATION","id":"3NFLP6UJHXXN4YKLMHBQCPBU","updated_at":"2021-06-10T22:25:28.608Z","created_at":"2021-06-10T22:25:28.608Z","version":1623363928608,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FPT7UBWCOT2RFO2NO4YAV7AR","name":"","sku":"868","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116603} +{"stream":"items","data":{"type":"ITEM","id":"LWISUJ5LKMJ3SD2VYOALOH73","updated_at":"2021-06-11T09:57:42.637Z","created_at":"2021-06-11T09:57:42.637Z","version":1623405462637,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Some milk","description":"Milk milk milk","abbreviation":"ml","variations":[{"type":"ITEM_VARIATION","id":"GKPHL7RMZBBOT3RLUIGSLAV6","updated_at":"2021-06-11T09:57:42.637Z","created_at":"2021-06-11T09:57:42.637Z","version":1623405462637,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"LWISUJ5LKMJ3SD2VYOALOH73","name":"Regular","ordinal":0,"pricing_type":"VARIABLE_PRICING","sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116603} +{"stream":"items","data":{"type":"ITEM","id":"ADDTL4NO6MGU3Z2ASEB4AMTY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Seat drive","description":"Ok federal street hand interest church seat. High reach enter everybody site.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"CCRQWB75Q6WPDUAQZQTADARP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ADDTL4NO6MGU3Z2ASEB4AMTY","name":"","sku":"1277","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116603} +{"stream":"items","data":{"type":"ITEM","id":"AZMQXD7EIXNPPDTCRO2D6GN2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Home education","description":"Stage hour morning of far. Poor professor sell few economy rule do.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"MTBNTENTKAT6EYRUEDNMX5F3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AZMQXD7EIXNPPDTCRO2D6GN2","name":"","sku":"1288","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116603} +{"stream":"items","data":{"type":"ITEM","id":"NU3SHSI463E6DGUKYBKUR5AN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Year against","description":"Move red serve less company. Color meeting bit action activity.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"XDLKXLVORQ5TFRATX3Y57ITK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NU3SHSI463E6DGUKYBKUR5AN","name":"Few","sku":"1113","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"H5X64NERSVG56N3X6TGVRSMM","item_option_value_id":"VPV5FI3NOX63EA5IF3UIYA5U"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"32TE3XU2JMRXJW4YITCLZRXR","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NU3SHSI463E6DGUKYBKUR5AN","name":"Boy","sku":"1113","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"H5X64NERSVG56N3X6TGVRSMM","item_option_value_id":"VVGCVAWVIN45CHSVW7ZPBWA2"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"H5X64NERSVG56N3X6TGVRSMM"}]}},"emitted_at":1668290116603} +{"stream":"items","data":{"type":"ITEM","id":"KETHQ26WQPDAUK3A3SCDTFDH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Much nearly","description":"These tax sense couple next not. I produce instead tough information practice.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"SKC2OL4IMKIA337AJK5MAZBF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KETHQ26WQPDAUK3A3SCDTFDH","name":"Service","sku":"1156","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FYM6CL5FOMKSPCNWJN2HOJ2D","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KETHQ26WQPDAUK3A3SCDTFDH","name":"Result","sku":"1156","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116604} +{"stream":"items","data":{"type":"ITEM","id":"2MVNOQ33F76E4XLJ4E4PMND6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Practice case","description":"Not policy show time quality environmental. Seven authority bill half.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"OLEFBWOXHIRTSA7SGDLHYOOY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2MVNOQ33F76E4XLJ4E4PMND6","name":"Office","sku":"1206","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"Q5FIC4WDGA6DTYEZLIZMN6T5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2MVNOQ33F76E4XLJ4E4PMND6","name":"Maintain","sku":"1206","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":23300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116604} +{"stream":"items","data":{"type":"ITEM","id":"XSWJBHMMNNKWTGZTQOCMAZC4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Seem seek","description":"Chair store thought any. Fly some buy image.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"WQUP25LACTSDVD27DXDQFSH6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XSWJBHMMNNKWTGZTQOCMAZC4","name":"","sku":"1207","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116604} +{"stream":"items","data":{"type":"ITEM","id":"AU3OGPDQBN4I4NUGUEL3RQCW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"East allow","description":"Seven charge worker history matter newspaper between.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"AFIXWWVXU5KJKOMCRUS27IGN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AU3OGPDQBN4I4NUGUEL3RQCW","name":"","sku":"1268","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116604} +{"stream":"items","data":{"type":"ITEM","id":"A3QLNVJRTUFLZUZC7GBSDUY5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Project ever","description":"Hot work break study part statement man. Fact tend phone reflect.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"JMMRYA3FYRPTJZBVPM3P6HT6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"A3QLNVJRTUFLZUZC7GBSDUY5","name":"","sku":"1295","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116604} +{"stream":"items","data":{"type":"ITEM","id":"GVRB4JMG3X74WTB4RHIRJWQQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Song thus","description":"Field reflect property evening. Note ability fact meeting American live offer.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"ZPR6QLCKUHQDZ62GTGAH76GM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GVRB4JMG3X74WTB4RHIRJWQQ","name":"","sku":"1143","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116605} +{"stream":"items","data":{"type":"ITEM","id":"24YZ7DYTW5DXAQYCVBY2SOXH","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-11T10:40:37.932Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Apply step","description":"About in eye likely over imagine a.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"WUVGNZO4M4BMZRBDF3T6UZZA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"24YZ7DYTW5DXAQYCVBY2SOXH","name":"Seem","sku":"1171","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RRI62PQFTVEETTDVHFAT2BRU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"24YZ7DYTW5DXAQYCVBY2SOXH","name":"To","sku":"1171","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":23500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116605} +{"stream":"items","data":{"type":"ITEM","id":"W5BVDSZ2FZ2N7JJI2MUPKHQ4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Face long","description":"Bit eight training truth large.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"CYY44EA6VNITEASKAR2FRKXW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"W5BVDSZ2FZ2N7JJI2MUPKHQ4","name":"Rule","sku":"1191","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VYD6N4IFKLRVKGAMBX3NNZ5S","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"W5BVDSZ2FZ2N7JJI2MUPKHQ4","name":"Direction","sku":"1191","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116605} +{"stream":"items","data":{"type":"ITEM","id":"2E35XY6NCK6YSMNOGMCDDR6C","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Society artist","description":"Safe something maybe name anyone. General economy lead interview something.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"DECPML3GK24TMS2KWCHJHKXE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2E35XY6NCK6YSMNOGMCDDR6C","name":"","sku":"1202","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116605} +{"stream":"items","data":{"type":"ITEM","id":"BR3QHJJDQANAE7ZQFK2LPNQV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Book price","description":"Allow responsibility bring pick fill answer strong.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"UAB6DK6VORAHYHPGADAZ3AZH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BR3QHJJDQANAE7ZQFK2LPNQV","name":"","sku":"1234","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116605} +{"stream":"items","data":{"type":"ITEM","id":"EH2WA6J3XD4ECVZJ7XLGIZQQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Along west","description":"Decade remember eight however consider wrong think small.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"KYW6FDLTDWUGZV5YE6UGORYI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EH2WA6J3XD4ECVZJ7XLGIZQQ","name":"","sku":"1300","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116605} +{"stream":"items","data":{"type":"ITEM","id":"CCPUJH5OZOEZZGSALWYUZSHE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Side though","description":"Final small concern manage modern budget friend.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"RH7TC3V2WX3TYVCWXJZQESXO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CCPUJH5OZOEZZGSALWYUZSHE","name":"","sku":"1178","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116606} +{"stream":"items","data":{"type":"ITEM","id":"MF4MVK56CMT6B2LOWNHY3LOU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rate million","description":"Somebody for case continue. Whom why recognize chance body into.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"SQQWGFRBKZXCXWEHOXO56MIH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MF4MVK56CMT6B2LOWNHY3LOU","name":"","sku":"1195","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116606} +{"stream":"items","data":{"type":"ITEM","id":"Y4FC7GBWA4MIM3MILMTE7FQA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Build benefit","description":"Race person face allow least form. Affect board event born loss.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"GJHXTFFUOMY4W4JBSCUOUNST","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Y4FC7GBWA4MIM3MILMTE7FQA","name":"","sku":"1204","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116606} +{"stream":"items","data":{"type":"ITEM","id":"5IO6MOB2Q5YFPLDIWDS6S63P","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Town organization","description":"Few during resource available young particular woman.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"MUJLCV3IITBK64J7G2PNT3UO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5IO6MOB2Q5YFPLDIWDS6S63P","name":"Available","sku":"1217","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":1800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"V6ZCHA32WI2KHHBIMPWBSSEE","item_option_value_id":"U2CIDNYZXPQON5J43G5IRL5E"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"C6SISWFKL3E24XE6BVQEKIIT","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5IO6MOB2Q5YFPLDIWDS6S63P","name":"Seven","sku":"1217","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"V6ZCHA32WI2KHHBIMPWBSSEE","item_option_value_id":"T5E527D52EKLS3FN6PJXTRPG"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"V6ZCHA32WI2KHHBIMPWBSSEE"}]}},"emitted_at":1668290116606} +{"stream":"items","data":{"type":"ITEM","id":"ITGHN4UZTZYDIVRGE2IJONKC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Modern would","description":"Event control suggest. Point choose set save.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"JDLESX7VVFYJ6DIUQGUR6YB5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ITGHN4UZTZYDIVRGE2IJONKC","name":"Young","sku":"1146","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YE7BEMVN7IXI57JOKMVOWJDD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ITGHN4UZTZYDIVRGE2IJONKC","name":"Character","sku":"1146","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":26100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116606} +{"stream":"items","data":{"type":"ITEM","id":"KRW5CPG6PLTZXG7ZQ3DT2JBV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Trouble mind","description":"Main kitchen statement main write. Tax will like truth interview.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"J5Y4R22QDF437VFBZS27Z6A3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KRW5CPG6PLTZXG7ZQ3DT2JBV","name":"","sku":"1152","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116606} +{"stream":"items","data":{"type":"ITEM","id":"IKP5KCHVZNKKP442ABQI3JCE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Take light","description":"Somebody fire beat say mind movie. Bar issue skill property we.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"OHAJU6H67GB7L4F4YOHMEOO7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IKP5KCHVZNKKP442ABQI3JCE","name":"","sku":"1210","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116606} +{"stream":"items","data":{"type":"ITEM","id":"DT5CR2IV5DU3PCHBDBKAAPHA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Story clearly","description":"Now boy indicate huge rule. Art sometimes activity state yeah travel interview.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"ULZCMX6XCA7MHFTTRBFCJAX6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DT5CR2IV5DU3PCHBDBKAAPHA","name":"","sku":"1227","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116607} +{"stream":"items","data":{"type":"ITEM","id":"43MSPLOTS3XH5FSNESPEY6UA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Leg above","description":"Election great medical heavy line discover church important.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"74X3K44TAKWRGQSKPJV5GQAL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"43MSPLOTS3XH5FSNESPEY6UA","name":"","sku":"1117","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116607} +{"stream":"items","data":{"type":"ITEM","id":"W2M6TOLXNXZCCLWXSNDCO4US","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mission anyone","description":"Themselves hold speak appear firm Democrat.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"R3B3GODSEBZLQLNIF64Y5RBB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"W2M6TOLXNXZCCLWXSNDCO4US","name":"","sku":"1130","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116607} +{"stream":"items","data":{"type":"ITEM","id":"F3AU6TSFIYU6HBKCY72FNIIP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Parent tonight","description":"Create year hold within keep product. Thousand return allow.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"XWKA7ZXLQMAFXMR4KMM47NXO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F3AU6TSFIYU6HBKCY72FNIIP","name":"","sku":"1132","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116607} +{"stream":"items","data":{"type":"ITEM","id":"T6VAGEYTJQDH3RBIQELATB24","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Girl purpose","description":"Congress true everyone indicate.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"JP7OLKWNQ64TH2QSVVCDRU5Z","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T6VAGEYTJQDH3RBIQELATB24","name":"They","sku":"1145","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":20600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZWO4ZBGQVG5D6X22VOPRTJA6","item_option_value_id":"2CWOMOA7IZEVWFH5O3PMGBPZ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IC27KTUIF6FAVCQQG2UFDJXJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T6VAGEYTJQDH3RBIQELATB24","name":"Traditional","sku":"1145","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"ZWO4ZBGQVG5D6X22VOPRTJA6","item_option_value_id":"4MRXLLB7JYZXST27SHD26QGO"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"ZWO4ZBGQVG5D6X22VOPRTJA6"}]}},"emitted_at":1668290116607} +{"stream":"items","data":{"type":"ITEM","id":"7ENKYG3FRO6LOJQ3JOS5FEL4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Enough common","description":"Mean minute but raise color pick. Investment push yard work certainly dream.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"YVGWWJE2M2GJRAYJGB5ZDHTZ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7ENKYG3FRO6LOJQ3JOS5FEL4","name":"Open","sku":"1256","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"4XJEBLOGO5EZPL2YTGLRZOZJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7ENKYG3FRO6LOJQ3JOS5FEL4","name":"Cell","sku":"1256","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":10500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116607} +{"stream":"items","data":{"type":"ITEM","id":"YBI54JTOTNGFQXXB7U65AFW6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Dream trial","description":"Yet dog day class report avoid attack. Several few real compare note.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"345ISNFXKOEGNYFJQAQUIBND","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YBI54JTOTNGFQXXB7U65AFW6","name":"","sku":"1298","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116607} +{"stream":"items","data":{"type":"ITEM","id":"TR3T4HA76T365C466W47FSXU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Important difference","description":"Finish PM less a degree. Here cultural various hair term dream gun.","category_id":"7L4RDYM6MUNS5H3NBZZDUP3C","variations":[{"type":"ITEM_VARIATION","id":"HN4B37JUP6RVHUUB3PNWYMHP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TR3T4HA76T365C466W47FSXU","name":"Ball","sku":"1301","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"KPSLKKQFG5F2SQEYP4VIY3D6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TR3T4HA76T365C466W47FSXU","name":"Young","sku":"1301","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":19800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116608} +{"stream":"items","data":{"type":"ITEM","id":"SHJ5A33BBOEME7IEEFKSHNXF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Face several","description":"Hold yes region director product now. Those note conference close.","category_id":"7L4RDYM6MUNS5H3NBZZDUP3C","variations":[{"type":"ITEM_VARIATION","id":"LO2XDDVJAE36KSLDVIXQLDEJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SHJ5A33BBOEME7IEEFKSHNXF","name":"","sku":"1304","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116608} +{"stream":"items","data":{"type":"ITEM","id":"JXEREEGJTZIIOLLKADD5LGMO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Nation ball","description":"Black sit major with nor fire chance. Main minute visit.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"UY6WQGVIBLKH4HURM6Y5TYUM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JXEREEGJTZIIOLLKADD5LGMO","name":"","sku":"1163","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116608} +{"stream":"items","data":{"type":"ITEM","id":"HNAHXVMU7KJT7QIIH6YN7QK2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Third however","description":"Continue big admit by blood we. State live everybody camera.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"E2LHY7OGCEFHPLALCCHMEKAQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HNAHXVMU7KJT7QIIH6YN7QK2","name":"","sku":"1183","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116608} +{"stream":"items","data":{"type":"ITEM","id":"X7B3KXWCWGF4MZBPBOQQPCA6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Four house","description":"Range take enough story evidence rule.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"TAHNWS2SWBNQ63UROGWZWV3N","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X7B3KXWCWGF4MZBPBOQQPCA6","name":"Election","sku":"1201","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WZOXNJUTU2B44VGMILVPIZGA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X7B3KXWCWGF4MZBPBOQQPCA6","name":"Live","sku":"1201","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":25700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116608} +{"stream":"items","data":{"type":"ITEM","id":"DG2ZZVDZWM6IWNI4D4Z7CIU4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Open medical","description":"At pass learn opportunity course wide.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"BZTJJZVSFDM6PYUAFRD22EQK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DG2ZZVDZWM6IWNI4D4Z7CIU4","name":"Five","sku":"1266","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"UPJIDBPRK47P773X36KKBQUT","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DG2ZZVDZWM6IWNI4D4Z7CIU4","name":"During","sku":"1266","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":23400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116608} +{"stream":"items","data":{"type":"ITEM","id":"362LPG3JPI4MVRORCLJX7Q3Z","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Might weight","description":"Poor case tough paper near simply. Whom officer fact low fall.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"VSFHC6P6MZKZ4INUYQQMMA2A","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"362LPG3JPI4MVRORCLJX7Q3Z","name":"","sku":"1150","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116609} +{"stream":"items","data":{"type":"ITEM","id":"L6YDWT7S26ZON63USPDDPC27","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Two however","description":"Lead region herself wind same. Very office example I fill performance car.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"CJQTYGM65IIV5DKFU5NUNLLF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"L6YDWT7S26ZON63USPDDPC27","name":"","sku":"1164","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116609} +{"stream":"items","data":{"type":"ITEM","id":"KL2QVNTOJEHZRVQ46CZRWKRK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Case force","description":"Other serve you. Important structure recognize represent difficult.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"NILL5TPHBY7PWCV3OOYDZNMK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KL2QVNTOJEHZRVQ46CZRWKRK","name":"Past","sku":"1185","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":21900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"GAP76TLGSYFHP35Z6K7XUWHO","item_option_value_id":"UAD7T35LDHYUXV7JC3JNJALQ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VHDA2DHODH75R2JE5DEKATYW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KL2QVNTOJEHZRVQ46CZRWKRK","name":"Here","sku":"1185","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"GAP76TLGSYFHP35Z6K7XUWHO","item_option_value_id":"4VEH4OU2T67DFRQE2VJTJBGJ"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"GAP76TLGSYFHP35Z6K7XUWHO"}]}},"emitted_at":1668290116609} +{"stream":"items","data":{"type":"ITEM","id":"O7QVF4FJYKJTJMEP2B3Z7RLV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Sit wear","description":"System theory million perhaps. Suddenly wind especially staff.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"MUYOXYEQFBRGLL2QQHX3HQT3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O7QVF4FJYKJTJMEP2B3Z7RLV","name":"Visit","sku":"1249","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":2100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RNWQKGHESOKLRDKSTROZSASW","item_option_value_id":"AX4FHTNZKBCIHSIPE5BDZ6VZ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"4FNEQJN3XMN6VDRO5WLU2BDP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"O7QVF4FJYKJTJMEP2B3Z7RLV","name":"Owner","sku":"1249","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"RNWQKGHESOKLRDKSTROZSASW","item_option_value_id":"GHG2DNUOZMPY74JUWJ6L3BOB"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"RNWQKGHESOKLRDKSTROZSASW"}]}},"emitted_at":1668290116609} +{"stream":"items","data":{"type":"ITEM","id":"ELPNOMXJLIJGGQZRKUBDXI5C","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Safe news","description":"Treatment each do. Board report billion save address follow science.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"L3EJEFU6MVXFSSWA2ZFE7PMW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ELPNOMXJLIJGGQZRKUBDXI5C","name":"","sku":"1240","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116609} +{"stream":"items","data":{"type":"ITEM","id":"5KOOPSRPEBFLINAH2PC2GDJ5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Standard several","description":"Figure subject ask figure certainly worker report. Bar get analysis home.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"Z4UPN4GCNYJOCIZCYG4CIANO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5KOOPSRPEBFLINAH2PC2GDJ5","name":"","sku":"1260","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116609} +{"stream":"items","data":{"type":"ITEM","id":"GEVCRGZBAT2HPRORLDLNV65P","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"On quality","description":"Window but require also prove bring attorney.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"OGZDUITFDEXCKLWUZUS54JRC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GEVCRGZBAT2HPRORLDLNV65P","name":"","sku":"1267","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116610} +{"stream":"items","data":{"type":"ITEM","id":"SGUVDQURPUT3KCVINKTQERC4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Until painting","description":"Discussion eye pattern general. Section member blue huge hand matter.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"Q4VIOKZIY75MBO253CBBFKMX","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SGUVDQURPUT3KCVINKTQERC4","name":"Toward","sku":"1111","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JBJP7SLGZMXOF2XWJZLEDOT7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SGUVDQURPUT3KCVINKTQERC4","name":"Despite","sku":"1111","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":15700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116610} +{"stream":"items","data":{"type":"ITEM","id":"5CBMR6SNG2FXAPWG375GFKXK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Growth black","description":"Either so lay energy and others quite. Series least office of hair so.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"446CH5QDYPC5BCF277IBJFZY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5CBMR6SNG2FXAPWG375GFKXK","name":"","sku":"1148","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116610} +{"stream":"items","data":{"type":"ITEM","id":"3WNSHSUSZHIDY35YUFIA5535","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Suggest woman","description":"Might believe get whatever degree prevent. Yeah system rest white blood.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"AYHCFWIK2RGUWIIDIOFAZHYH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3WNSHSUSZHIDY35YUFIA5535","name":"","sku":"1167","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116610} +{"stream":"items","data":{"type":"ITEM","id":"P4UPXSTW5ASHQI5VCHEWHXBJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Culture person","description":"Write cold follow. Above product month Congress computer act require.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"253L3KJSZXKVAUULWGTMM76Y","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P4UPXSTW5ASHQI5VCHEWHXBJ","name":"","sku":"1187","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116610} +{"stream":"items","data":{"type":"ITEM","id":"5WXO65Y2RL5WUVXTOT77EHQ2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Clear sell","description":"Guy myself describe cut worker. Might mind lawyer on.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"ZIYIWKPZ4Y63GAK453XUTD55","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5WXO65Y2RL5WUVXTOT77EHQ2","name":"Trouble","sku":"1196","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PNVHVLOHYPI5PUYNR73MSNHU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5WXO65Y2RL5WUVXTOT77EHQ2","name":"Economy","sku":"1196","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116610} +{"stream":"items","data":{"type":"ITEM","id":"4OPF2BW4THGOTNQQ7BOGATQH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Soldier pretty","description":"Thousand protect loss add offer six including. Trial drug put area risk.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"SBZMIR7NM7NRP4CYLQBZCGKL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4OPF2BW4THGOTNQQ7BOGATQH","name":"","sku":"1218","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116611} +{"stream":"items","data":{"type":"ITEM","id":"GOPTWOIYNCORPT6VAIPMCPKS","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"These certain","description":"Couple wrong someone first. Forget control wall here.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"CTE6K2X27VS5RMOFOBNWPGNQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GOPTWOIYNCORPT6VAIPMCPKS","name":"","sku":"1223","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116611} +{"stream":"items","data":{"type":"ITEM","id":"PYNDTGLFIMXA73PRRWPCGAP2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hair program","description":"Live fire opportunity media. Activity subject per difference last occur.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"RSM53ZTPIPVLBHRVCEKSUU45","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PYNDTGLFIMXA73PRRWPCGAP2","name":"","sku":"1258","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116611} +{"stream":"items","data":{"type":"ITEM","id":"POCHTN5QOUPPFKUH3UQE7QEV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Condition interesting","description":"Idea collection fill degree. Whose determine machine go teach although.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"K5WNDNNEP3C53VE227EDXFHH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"POCHTN5QOUPPFKUH3UQE7QEV","name":"","sku":"1125","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116611} +{"stream":"items","data":{"type":"ITEM","id":"LXPKERAS7IVA4Q65L2UFIYX5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Development need","description":"Hot example seem magazine may. Force admit also situation listen five again.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"VPG7RVQ5SPI63IVB24PTBBKP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"LXPKERAS7IVA4Q65L2UFIYX5","name":"","sku":"1133","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116611} +{"stream":"items","data":{"type":"ITEM","id":"7OZTJKR4VW2Q7SU7L53TDARC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Unit throughout","description":"Win at table energy improve science power.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"QJVY4IA7NQ62UMADUWWR3LGS","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7OZTJKR4VW2Q7SU7L53TDARC","name":"","sku":"1154","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116611} +{"stream":"items","data":{"type":"ITEM","id":"2UO4Q7Z5HJ2HWZYCIGFEX65M","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"He short","description":"Life green your door. Upon child machine draw.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"HHKNNZQEJICNYS2XNR5KOJUU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2UO4Q7Z5HJ2HWZYCIGFEX65M","name":"Too","sku":"1161","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"5RI3TYPOV54KWTUXL2FU76PY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2UO4Q7Z5HJ2HWZYCIGFEX65M","name":"Tonight","sku":"1161","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116611} +{"stream":"items","data":{"type":"ITEM","id":"U7JVLJUCE67I7HBAKVMV4TK7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Especially tell","description":"Work share field both. Where hit care system know design cup national.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"UTE4BK5Z76GLUHYG7VHCF7IK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U7JVLJUCE67I7HBAKVMV4TK7","name":"","sku":"1208","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116612} +{"stream":"items","data":{"type":"ITEM","id":"VXBRFVIOVHLMKFQSNALELMBB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Provide west","description":"Smile edge stuff full agreement rich couple. Should space task American.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"KIGIIC4IE5ALPMJ5Z3WDJVF3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VXBRFVIOVHLMKFQSNALELMBB","name":"Single","sku":"1211","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6GEPZYSGEGCBVE6ETTDHD725","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VXBRFVIOVHLMKFQSNALELMBB","name":"Staff","sku":"1211","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116612} +{"stream":"items","data":{"type":"ITEM","id":"CKK6DQAMOJM55L73SAAB5NP3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Follow parent","description":"College worker decade agreement. Somebody girl lot more present.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"2OFZHGPU6B2W4OL5WD4DKURJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CKK6DQAMOJM55L73SAAB5NP3","name":"","sku":"1237","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116612} +{"stream":"items","data":{"type":"ITEM","id":"4RBFAQSRSLOZFKEJYJ4M3WPN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Notice first","description":"By hold success mouth crime able threat. Respond necessary ahead seek they.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"DBL6FOPGF5JU3GXZVHANVAEY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4RBFAQSRSLOZFKEJYJ4M3WPN","name":"","sku":"1247","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116612} +{"stream":"items","data":{"type":"ITEM","id":"OBJ6ZBNGPRYII4J3DOJFGXRM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Maybe different","description":"Decision network occur how avoid low sister.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"JFARQZASGTLGVAQKB6KOQQD6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OBJ6ZBNGPRYII4J3DOJFGXRM","name":"","sku":"1157","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116612} +{"stream":"items","data":{"type":"ITEM","id":"OTSOFQ7K6BI4IEPWMJCLRXWZ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Right soon","description":"However important result sell mission this people.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"EDFWTSWS46U3T727YFH6RX4P","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OTSOFQ7K6BI4IEPWMJCLRXWZ","name":"Sell","sku":"1186","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"FCK7M5HAIIXSNL7S44AKAR6H","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OTSOFQ7K6BI4IEPWMJCLRXWZ","name":"Pm","sku":"1186","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":24000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116612} +{"stream":"items","data":{"type":"ITEM","id":"2F5ES5QZNMNMBVF4A4OE6CKF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Go late","description":"Want guess child dinner sit yourself various. Keep course expect value.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"QSABLGGTSUQDMXPH2GZKLRF3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2F5ES5QZNMNMBVF4A4OE6CKF","name":"","sku":"1192","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116612} +{"stream":"items","data":{"type":"ITEM","id":"TFIG7UM7JUXHRQRJU76YRIOE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Each character","description":"Of reflect sure food skin image. Benefit or yard order of move personal day.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"23DJVNQ74BBCVDVCD364VBAB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"TFIG7UM7JUXHRQRJU76YRIOE","name":"","sku":"1203","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116613} +{"stream":"items","data":{"type":"ITEM","id":"XBPXVDEWVGYTTNSAH7KUPWZL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bed great","description":"Or food expect ready program record traditional. Enter question instead record.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"PNVGIEOYH6FQAWU6NN5WFU53","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XBPXVDEWVGYTTNSAH7KUPWZL","name":"Project","sku":"1231","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"EKODWSGASSKAJYRRZTVWM2KK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XBPXVDEWVGYTTNSAH7KUPWZL","name":"He","sku":"1231","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116613} +{"stream":"items","data":{"type":"ITEM","id":"DI3KIGKT6PW3PKF5GRBV44IJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Social center","description":"Minute else consumer treatment woman.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"JWINTVPETXKZWW4K3L4XQ2IN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DI3KIGKT6PW3PKF5GRBV44IJ","name":"","sku":"1264","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116613} +{"stream":"items","data":{"type":"ITEM","id":"WNRBORLFITPXBIQUERJQDDER","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Want might","description":"Official window capital indeed ago Democrat.","category_id":"7L4RDYM6MUNS5H3NBZZDUP3C","variations":[{"type":"ITEM_VARIATION","id":"3DGNDPWR4LEOCWOJB34Z4ZYK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WNRBORLFITPXBIQUERJQDDER","name":"","sku":"1302","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116613} +{"stream":"items","data":{"type":"ITEM","id":"6WXMUN6N7YQYG4E7ARREBVSO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Threat oil","description":"View floor what would. Hope base door especially about mission.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"W2DNQAS6QHJCBIVATU5KYJBM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6WXMUN6N7YQYG4E7ARREBVSO","name":"","sku":"1109","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116613} +{"stream":"items","data":{"type":"ITEM","id":"CYV2CIX6TSE35JM2TF3WCOQF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Under since","description":"Also TV ahead thousand too break. Well state look knowledge.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"WRWAJGPGPU5KBSVFBDYDD6WO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CYV2CIX6TSE35JM2TF3WCOQF","name":"","sku":"1119","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116613} +{"stream":"items","data":{"type":"ITEM","id":"2JPHMUZGHQQ24X3MWBUBYXAW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Should close","description":"Present us before institution factor public.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"VPIEYMGOHLWOPGC3J6IBUJFU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2JPHMUZGHQQ24X3MWBUBYXAW","name":"","sku":"1138","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116613} +{"stream":"items","data":{"type":"ITEM","id":"E62PCQNK7FCB4AW5PYL3RRNV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Art recently","description":"Region president story not. Address tend example wonder try really hear.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"7SURM3RM2QQSRG74TVPQ3OX3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E62PCQNK7FCB4AW5PYL3RRNV","name":"","sku":"1212","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116613} +{"stream":"items","data":{"type":"ITEM","id":"ANUAFRLREZ2FOUW4WQB4ZQBB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Together somebody","description":"Draw material follow expert production. Base clearly feel style director.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"F3KYXZJRPIHZLVYHPFQXBLYD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ANUAFRLREZ2FOUW4WQB4ZQBB","name":"","sku":"1128","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116614} +{"stream":"items","data":{"type":"ITEM","id":"QLFWSMCEAZV6JRKKTKUPWE7X","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Indeed leg","description":"Wonder international worry student training all beyond establish.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"VUYEOX4RQ4V6YUHRNG5G5BCA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QLFWSMCEAZV6JRKKTKUPWE7X","name":"","sku":"1160","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116614} +{"stream":"items","data":{"type":"ITEM","id":"3CL3CKW3FEMH2NJPN3YW6JIL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Best discussion","description":"Best share outside himself project. Show price statement loss.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"6THY4BSC5A4LITMRG7ZYJJ45","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3CL3CKW3FEMH2NJPN3YW6JIL","name":"","sku":"1168","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116614} +{"stream":"items","data":{"type":"ITEM","id":"4JFODYVDN7DSVRCIRWJXQEAS","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Relationship five","description":"Them good often push very. Community leg movement need determine political.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"BPDFHD7SF6OEJPKZ3VIFHJ5Y","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4JFODYVDN7DSVRCIRWJXQEAS","name":"","sku":"1213","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116614} +{"stream":"items","data":{"type":"ITEM","id":"T5YCSY3SZ2SNDQOVFNDUMSBM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Past because","description":"Total office beautiful decide actually performance gas.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"MGZUMPB6THP63JYY5PFUGFRC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"T5YCSY3SZ2SNDQOVFNDUMSBM","name":"","sku":"1114","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116614} +{"stream":"items","data":{"type":"ITEM","id":"2K64IWXCTS3DJJXLZMPRAGZU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tough water","description":"Occur coach direction ball star fear everything.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"ZBJGYDMKSHF74EB3CAATXCVL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2K64IWXCTS3DJJXLZMPRAGZU","name":"","sku":"1115","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116614} +{"stream":"items","data":{"type":"ITEM","id":"MA7AC2CYFBXQ5UYW4B4ZAP3A","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Pass listen","description":"Administration business wrong attack.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"FIJUBBALAWUDBBTH5H5BN2WJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MA7AC2CYFBXQ5UYW4B4ZAP3A","name":"","sku":"1118","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116614} +{"stream":"items","data":{"type":"ITEM","id":"SETQSIO5UEOUKSLO2LRD4PAI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Major defense","description":"Write everything everything meeting name to.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"GIPHFB5CVTH5WZHUYO5YHQXK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SETQSIO5UEOUKSLO2LRD4PAI","name":"","sku":"1127","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116614} +{"stream":"items","data":{"type":"ITEM","id":"RTNHBUS2S7FUACGCWAJUZ6WM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Brother each","description":"Watch throughout more become. Need resource American sit run firm.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"3ODWR5JKNX4AW4BMF5QO5O5Y","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RTNHBUS2S7FUACGCWAJUZ6WM","name":"","sku":"1243","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":29200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116615} +{"stream":"items","data":{"type":"ITEM","id":"B2CUMIOS24G3OTUBCCXY4YDM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mission already","description":"Leader religious style difficult charge. Begin next item tonight.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"TJLNGG6NKCN2JKKSDL2PHQYR","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"B2CUMIOS24G3OTUBCCXY4YDM","name":"","sku":"1275","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116615} +{"stream":"items","data":{"type":"ITEM","id":"HORMLLLDT6NMTCVISBFQ7SBN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Table interview","description":"Total daughter necessary fall leg. Deep year own. Congress receive raise they.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"DBYBWMLQ4XJORMXDQECEVOLM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HORMLLLDT6NMTCVISBFQ7SBN","name":"","sku":"1279","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116615} +{"stream":"items","data":{"type":"ITEM","id":"OFN3IPGYZ3756EAKOXF3FKIQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Tv family","description":"Blood even major partner performance raise many. Push quality catch no.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"IQSB75NVPELMCRXVE3ZEE2VI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OFN3IPGYZ3756EAKOXF3FKIQ","name":"","sku":"1238","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116615} +{"stream":"items","data":{"type":"ITEM","id":"F4FPUQAQ3YQUMPDVTVXGCMFF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Candidate alone","description":"Road democratic far about simple four its.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"ISB3J6FEI4SR4IX3GNFVHG2H","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F4FPUQAQ3YQUMPDVTVXGCMFF","name":"","sku":"1272","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116615} +{"stream":"items","data":{"type":"ITEM","id":"DLCRUNES3KVFKM3CC3PSZRZY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Nation our","description":"Morning may game. Partner say enjoy eat top.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"EXDTUOM5ZDRB6GLW64PFHTD5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DLCRUNES3KVFKM3CC3PSZRZY","name":"Area","sku":"1281","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SLSL7HMSWSN5XNZJ5EVMH32R","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DLCRUNES3KVFKM3CC3PSZRZY","name":"Daughter","sku":"1281","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116615} +{"stream":"items","data":{"type":"ITEM","id":"IXSYTTLWNWMRKY3DN5ZRFECA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Property wind","description":"Discuss audience clear stage get.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"XY4K4AW7FVP6PWBJ5A5GTPXD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IXSYTTLWNWMRKY3DN5ZRFECA","name":"","sku":"1263","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116615} +{"stream":"items","data":{"type":"ITEM","id":"7DLZNW6CU6XJYUH4QDDPFWM7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Computer really","description":"Market it court age short herself. Live time determine station center official.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"VGOQBDJYQHKHE3YZFZQ3TXCL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7DLZNW6CU6XJYUH4QDDPFWM7","name":"Play","sku":"1296","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"UI2G7OFJSCWTELUHPYK25OIO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"7DLZNW6CU6XJYUH4QDDPFWM7","name":"Customer","sku":"1296","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116615} +{"stream":"items","data":{"type":"ITEM","id":"32LCENJJ437P5SC2N3GIND2Z","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Recognize check","description":"Growth hear store result field manage. Policy left model ever better teach.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"LYPWP4NQP4BQF4ZEKVXK235C","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"32LCENJJ437P5SC2N3GIND2Z","name":"","sku":"1197","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116616} +{"stream":"items","data":{"type":"ITEM","id":"XNRBFRCOHZ76TPNSKE6T67Q5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Recognize summer","description":"Off travel church their unit. Music quality good heavy card carry.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"5DXSAEFV7YYL7RSLGT2T6UL5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XNRBFRCOHZ76TPNSKE6T67Q5","name":"Difficult","sku":"1209","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":28300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"6JJD6YMSI6PT6354AY7YGJJ3","item_option_value_id":"I5ZWLPDEX77ML5TVXYXSKYAI"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZMG34BUSEYFW3YE4LBBKLYTJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XNRBFRCOHZ76TPNSKE6T67Q5","name":"Institution","sku":"1209","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"6JJD6YMSI6PT6354AY7YGJJ3","item_option_value_id":"H5XKTNG2KJWXDR6Y5CRJJLLL"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"6JJD6YMSI6PT6354AY7YGJJ3"}]}},"emitted_at":1668290116616} +{"stream":"items","data":{"type":"ITEM","id":"K5HDMKFQOTXQTIN6BSKPTDCV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Return reflect","description":"Really final learn clear seat. Mouth end east place.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"Z3Z4KVAFAB5BXBOMFH6Q2ETL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"K5HDMKFQOTXQTIN6BSKPTDCV","name":"","sku":"1244","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":30000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116616} +{"stream":"items","data":{"type":"ITEM","id":"VKWCUNZPNKZCTXKRQT2OP6JL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Baby message","description":"History lead share among check should.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"PKVR7EXD2DTQFNJTPS6URVGZ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VKWCUNZPNKZCTXKRQT2OP6JL","name":"Factor","sku":"1251","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"F6ZNKGVGRZPYJWS6R6OTEL7P","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VKWCUNZPNKZCTXKRQT2OP6JL","name":"Unit","sku":"1251","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":19600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116616} +{"stream":"items","data":{"type":"ITEM","id":"YBS7322HWHTBFFSQBDO43GST","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Letter card","description":"Computer film anyone director. Off computer become head that need career four.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"DMSKX2JFA5SMWWYEBR5IPDGS","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YBS7322HWHTBFFSQBDO43GST","name":"","sku":"1294","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116616} +{"stream":"items","data":{"type":"ITEM","id":"34YPXNWOXNHNNJRD4YAK2CZA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Project anyone","description":"Avoid attention public task. Election begin perform. Step action good wait.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"SSEJPELL5FAZFXW2ODP7TQMH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"34YPXNWOXNHNNJRD4YAK2CZA","name":"","sku":"1110","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116616} +{"stream":"items","data":{"type":"ITEM","id":"BAVPZPBH752MV3F22UFOD3NK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Myself whom","description":"Enjoy make age usually choose them. Ask discover wind.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"NHGGHGQM72UEKS37KLCYMJFA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BAVPZPBH752MV3F22UFOD3NK","name":"","sku":"1124","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116616} +{"stream":"items","data":{"type":"ITEM","id":"Z53JOHWWSDTUTQSVQGYEIKVS","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Dream green","description":"Few college maybe serious eye half involve. Mr big write firm.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"ODQPGPPYRCLEHABZDE5DADX6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z53JOHWWSDTUTQSVQGYEIKVS","name":"Cover","sku":"1137","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":8900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"5Q5P7WKU4ZGF6PKYEGRFFT2O","item_option_value_id":"XURMQRMLMPUNR7FIJ5GCFJUT"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"XC6LYHR77F3XROAUEA3BUECK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z53JOHWWSDTUTQSVQGYEIKVS","name":"Also","sku":"1137","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"5Q5P7WKU4ZGF6PKYEGRFFT2O","item_option_value_id":"TFJ75Y3H6GU4Y6K3FI4CVXTG"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"5Q5P7WKU4ZGF6PKYEGRFFT2O"}]}},"emitted_at":1668290116616} +{"stream":"items","data":{"type":"ITEM","id":"PUDDDFZGCC3GR2KX7HBJTH4U","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Morning blood","description":"Type age form cup rock. Provide raise old truth suffer state.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"EB7MZT3WY2RF567B47KD33R5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PUDDDFZGCC3GR2KX7HBJTH4U","name":"","sku":"1292","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":13300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116617} +{"stream":"items","data":{"type":"ITEM","id":"BHNJK3A6NDIL5P32NS7CFMTG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Keep station","description":"Nice far crime dream laugh painting. Hope book hear probably think child risk.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"IKWETD2SYIIVJO4P2VP7UJEX","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BHNJK3A6NDIL5P32NS7CFMTG","name":"","sku":"1229","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116617} +{"stream":"items","data":{"type":"ITEM","id":"GZMIBSV2WKCJ2NFQUXS7CQSP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Teach responsibility","description":"Interest final financial cup war pattern.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"AQFFA575MO27NE6LWEKPDJ5A","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GZMIBSV2WKCJ2NFQUXS7CQSP","name":"","sku":"1232","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116617} +{"stream":"items","data":{"type":"ITEM","id":"DYJYHKI2XG6GWW4BHS5UDVCV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Suffer business","description":"Possible senior must nothing. Cell check figure difference book.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"SZHT26FNZICCTLATDWPA4UWI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DYJYHKI2XG6GWW4BHS5UDVCV","name":"Enjoy","sku":"1131","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"MXMUVDLKGL2KK7OXQPAP5DOW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DYJYHKI2XG6GWW4BHS5UDVCV","name":"Art","sku":"1131","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":1300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116617} +{"stream":"items","data":{"type":"ITEM","id":"3D6MUVWGUNZQLEESGJCRHO2D","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Figure but","description":"Each capital floor event determine. Help better start simple four beat society.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"U6D6RRV4ZKSQQ3ANNOGVRXSH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3D6MUVWGUNZQLEESGJCRHO2D","name":"","sku":"1140","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116617} +{"stream":"items","data":{"type":"ITEM","id":"ZA24PVECTK6UENGOJ6VXG7AE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Information head","description":"Make family fear lot section.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"WX6OPKXQQOHDPVSJHGF25LNP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZA24PVECTK6UENGOJ6VXG7AE","name":"","sku":"1158","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116617} +{"stream":"items","data":{"type":"ITEM","id":"ZTKLNMNZTD56PVL6IWLIXQOA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Present media","description":"Back something begin sit for. Enter reality quite east recognize ahead.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"SZJVRRYQJDNPAE2RNDZDN24K","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZTKLNMNZTD56PVL6IWLIXQOA","name":"","sku":"1222","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116617} +{"stream":"items","data":{"type":"ITEM","id":"MDWS7OOESQKFZGTNJZOKCNWE","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-11T10:40:37.932Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Able help","description":"Issue prepare speech news federal development star.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"IKGSZOZKDCFFSJEYNSSIJ332","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MDWS7OOESQKFZGTNJZOKCNWE","name":"Wonder","sku":"1297","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":21700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QHHTZNJ7Q534LTQT7GO4VZU3","item_option_value_id":"622TINB6O6XQDN4INXHKCPRT"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"C5IZ73SLZYDQWMJ3KU2722QD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MDWS7OOESQKFZGTNJZOKCNWE","name":"Career","sku":"1297","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"QHHTZNJ7Q534LTQT7GO4VZU3","item_option_value_id":"DUJE7KBU3HOY7UOJSSLPKDPN"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"QHHTZNJ7Q534LTQT7GO4VZU3"}]}},"emitted_at":1668290116617} +{"stream":"items","data":{"type":"ITEM","id":"A3RUYA36LB2Q7P3Q3KXATHNU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Now fill","description":"Spend real according movie play. Likely argue effort able.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"F4LUSXNBJKUWXNO5X7VIRPAW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"A3RUYA36LB2Q7P3Q3KXATHNU","name":"","sku":"1299","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116618} +{"stream":"items","data":{"type":"ITEM","id":"OPK7TBRJDR76S7IT4XKJ4KOJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Especially do","description":"Movement out stop while minute. Recent easy his sign sure.","category_id":"7L4RDYM6MUNS5H3NBZZDUP3C","variations":[{"type":"ITEM_VARIATION","id":"AW6FXXPDWCOQI3TRQD4KDJCJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"OPK7TBRJDR76S7IT4XKJ4KOJ","name":"","sku":"1307","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116618} +{"stream":"items","data":{"type":"ITEM","id":"YOEZKEU47BQ26W7QL7D7LWAO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"President plant","description":"Security cultural end people when.","category_id":"JTDN7QUY6KM3E4JLHEOZZA42","variations":[{"type":"ITEM_VARIATION","id":"BJL3CZ6PHHKGZKM5NLR6L5GO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YOEZKEU47BQ26W7QL7D7LWAO","name":"","sku":"1205","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116618} +{"stream":"items","data":{"type":"ITEM","id":"C6R6TMEA65ZTJPZMZH7OV5ZG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Happen finish","description":"Group player issue cut actually I a. Turn military lot she tonight person.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"BDJ62UAFMNKVHOPRKJF2ISMG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C6R6TMEA65ZTJPZMZH7OV5ZG","name":"","sku":"1235","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116618} +{"stream":"items","data":{"type":"ITEM","id":"JAEJQEW6LXCISATQWIGSUC33","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Near far","description":"Indicate financial customer part evidence after tax.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"HV3WB4MVYSSDTNQPXCWROULG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JAEJQEW6LXCISATQWIGSUC33","name":"Soon","sku":"1236","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VC6FRNDIHSIOPTYMDIQEUSQ7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JAEJQEW6LXCISATQWIGSUC33","name":"Trouble","sku":"1236","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":4400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116618} +{"stream":"items","data":{"type":"ITEM","id":"CDPSKMTKU4E2GKKPSZLTIWF4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Suffer special","description":"Risk blue low face itself. Manage defense decide budget.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"ZOVIHJJORYIVZ5V5ULEZOC6V","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CDPSKMTKU4E2GKKPSZLTIWF4","name":"Computer","sku":"1286","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"C6GAK4CJDL4YOLU3WPM3JX3M","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CDPSKMTKU4E2GKKPSZLTIWF4","name":"Space","sku":"1286","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":18700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116618} +{"stream":"items","data":{"type":"ITEM","id":"M65JEKAS2NFU7727N2H6TIFM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Since between","description":"Short father happen character fly father key.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"SJTHPVSB5DSYRYZHYCE6RMJQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"M65JEKAS2NFU7727N2H6TIFM","name":"","sku":"1194","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116619} +{"stream":"items","data":{"type":"ITEM","id":"RJLONCLA2OHNXQS6T7YJNARR","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Low over","description":"Whose pretty Mr piece else reality really start.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"QEEN27L4OOK6FXJWQX5GVL2P","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"RJLONCLA2OHNXQS6T7YJNARR","name":"","sku":"1250","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116619} +{"stream":"items","data":{"type":"ITEM","id":"33ZBBF2NALSQIAODIJGWYRME","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Once economic","description":"Bank field news defense during spring word war.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"OZEDLCB6AU6FHOLLRLLVCSR3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"33ZBBF2NALSQIAODIJGWYRME","name":"","sku":"1255","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116619} +{"stream":"items","data":{"type":"ITEM","id":"IEFU5RTGEAIGRWLG77AZ3OUE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ball sport","description":"Offer challenge far return. City than work. Member country half hot best.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"RC6KP2OOIANSFY7FIHA2G5TM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IEFU5RTGEAIGRWLG77AZ3OUE","name":"","sku":"1139","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116619} +{"stream":"items","data":{"type":"ITEM","id":"4YDFACLIYU3WSVMH5GUTLSSG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Mention accept","description":"Fast woman responsibility over enjoy share society TV.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"VGOBKTTUEA3HIOXDQNA7N3Q5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4YDFACLIYU3WSVMH5GUTLSSG","name":"Foot","sku":"1193","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":11300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PIMK4LP6GTFX3KMNRIY2AW7M","item_option_value_id":"GSDD33RAX3TZG4BJZCOS656T"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"R6SE73LM5TIVHKA2GIQCI3QG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4YDFACLIYU3WSVMH5GUTLSSG","name":"Her","sku":"1193","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PIMK4LP6GTFX3KMNRIY2AW7M","item_option_value_id":"XYQCBC25RBW6WRXCIESJS3CP"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"PIMK4LP6GTFX3KMNRIY2AW7M"}]}},"emitted_at":1668290116619} +{"stream":"items","data":{"type":"ITEM","id":"MGAMPOGD3UEPUB6OD7DFKR5N","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Night natural","description":"Under family out machine court authority. When morning reflect data.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"D2OUVBJZRHMQSYDMMLUMDAFH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MGAMPOGD3UEPUB6OD7DFKR5N","name":"","sku":"1224","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116619} +{"stream":"items","data":{"type":"ITEM","id":"BPO4GJ34SMGOZAO4AJCGUO4I","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Something newspaper","description":"Small buy themselves policy. Kitchen him wait century call kind tonight none.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"KEF7Z6WO4OVKJ4U6CKNZ7LMD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BPO4GJ34SMGOZAO4AJCGUO4I","name":"","sku":"1287","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116619} +{"stream":"items","data":{"type":"ITEM","id":"P7XS6NFIKCA3FHZIOW3KPFKW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Buy almost","description":"Magazine base report event his respond budget. Tv remain meeting let.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"2L6M5TQKWXDCIYBDNRWWX4R4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P7XS6NFIKCA3FHZIOW3KPFKW","name":"","sku":"1142","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116619} +{"stream":"items","data":{"type":"ITEM","id":"UK6JW5VK52I5UGVQLYVHUH4H","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Call season","description":"Door decade their others. Remain green future prevent.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"TA7C2J4GLAWTUVFXVDZBZR6R","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UK6JW5VK52I5UGVQLYVHUH4H","name":"Red","sku":"1151","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QPA54ML46WVS4YB7XRDOZS3Y","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UK6JW5VK52I5UGVQLYVHUH4H","name":"Back","sku":"1151","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116620} +{"stream":"items","data":{"type":"ITEM","id":"3SLBTYF3G7N63HFYEF7O4TWA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Team race","description":"Student whose read spring wall reason. Early interest nice perform radio.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"7LEVJZEFV4N642UE3V4XYD4L","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3SLBTYF3G7N63HFYEF7O4TWA","name":"Perform","sku":"1177","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":27700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"DCOKW5AGAO3VYO63KDC7JDV5","item_option_value_id":"TB5NHXTTZH2UYLFDQLQQ5N2W"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"V2KVP7DVMZXZ6OGPURXJB2PF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"3SLBTYF3G7N63HFYEF7O4TWA","name":"Our","sku":"1177","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"DCOKW5AGAO3VYO63KDC7JDV5","item_option_value_id":"T5ZRUHOM72XA53KRDBJ6E6Z4"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"DCOKW5AGAO3VYO63KDC7JDV5"}]}},"emitted_at":1668290116620} +{"stream":"items","data":{"type":"ITEM","id":"JEA663W5U6DNE45CLDPSJPKT","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Specific our","description":"Your space quickly a hold break provide. Close property herself. At less day.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"WVRVBKJJVDO4PFO7YFIE45II","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JEA663W5U6DNE45CLDPSJPKT","name":"","sku":"1248","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116620} +{"stream":"items","data":{"type":"ITEM","id":"5I5UG7SDXPPOKCDQYYMJ7X57","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Pull teacher","description":"Usually fish billion price. Either world seven professional main college.","category_id":"7EHWDMHB5PCJK7O2H7IB3OPF","variations":[{"type":"ITEM_VARIATION","id":"OQIKJLFG27CRTBHNEMPZ2CNI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5I5UG7SDXPPOKCDQYYMJ7X57","name":"","sku":"1108","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":14300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116620} +{"stream":"items","data":{"type":"ITEM","id":"NJAV7RSVJFDHLUREOR3O76BI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Every billion","description":"Sea me alone possible on. Every impact know just laugh.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"QRHMA3HBLR5IXPR7IMGA35CQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NJAV7RSVJFDHLUREOR3O76BI","name":"Professor","sku":"1121","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"SOW4T3ZKWBWSDQLQCDGSWXUB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NJAV7RSVJFDHLUREOR3O76BI","name":"Institution","sku":"1121","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116620} +{"stream":"items","data":{"type":"ITEM","id":"DS5QXTBG2RRMZNIVZXZCQ2CD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Bed every","description":"Minute those sit mother explain.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"DRF34P3GVU3XNFAABGU3XFUU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DS5QXTBG2RRMZNIVZXZCQ2CD","name":"","sku":"1123","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116620} +{"stream":"items","data":{"type":"ITEM","id":"6YRUX2GOVTCI6N4IVSGCI5JH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Hold fact","description":"More day sing management cost. Thing leg again teacher positive spend.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"YQANPPZNZW6PXNLZ346DQFEV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6YRUX2GOVTCI6N4IVSGCI5JH","name":"Window","sku":"1141","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"5YZWLCSCHEGJBRIPYIVEGCPE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6YRUX2GOVTCI6N4IVSGCI5JH","name":"Beat","sku":"1141","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":21900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116620} +{"stream":"items","data":{"type":"ITEM","id":"F2GR6V5ZRSSPRITFWCYTX3MK","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-11T10:40:37.932Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"American under","description":"Choose low friend he spring know poor. The big able goal south everyone.","category_id":"WCDERO4UKYIJE4HKGS7J2422","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"EYET75GXBX5DQYID6MGU62EA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F2GR6V5ZRSSPRITFWCYTX3MK","name":"","sku":"1254","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116621} +{"stream":"items","data":{"type":"ITEM","id":"GVOF5FXLBMLOXZUSOHOTSPMY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Say politics","description":"Article leave back talk western very miss off.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"CK3QWW6QJ72B3OJDLRV43QIZ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GVOF5FXLBMLOXZUSOHOTSPMY","name":"","sku":"1274","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116621} +{"stream":"items","data":{"type":"ITEM","id":"VLKNLTA6OMMHHUABGTPZPWFA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Idea system","description":"Ago trouble likely make. That may agent effort employee benefit inside.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"UFJVF7LQJY2CCXV53BZL32UD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VLKNLTA6OMMHHUABGTPZPWFA","name":"","sku":"1285","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116621} +{"stream":"items","data":{"type":"ITEM","id":"KVP4EKKZO6REH3E2RHYHL4AH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Practice area","description":"Every notice society development effort present high.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"36GGJNDFD43BFXQEMFEGUTYO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"KVP4EKKZO6REH3E2RHYHL4AH","name":"","sku":"1135","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116621} +{"stream":"items","data":{"type":"ITEM","id":"QBXNIXXRGT23LMBZZOH6TUTB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Suddenly agent","description":"Campaign line occur. Above should maybe design. Many your prevent role.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"EEWJRPSH3ZIGX3MZVZEAWRQ2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QBXNIXXRGT23LMBZZOH6TUTB","name":"American","sku":"1257","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":6900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XLVQH73XGI65XQS6JTYEBWA6","item_option_value_id":"NLMX3ZS2HHBJUV2JIL543F3A"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"CZ6EGNOHKC42BDLNWVOLIKNB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"QBXNIXXRGT23LMBZZOH6TUTB","name":"International","sku":"1257","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XLVQH73XGI65XQS6JTYEBWA6","item_option_value_id":"KXWXH3QNPJVU676O32DNWZM7"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"XLVQH73XGI65XQS6JTYEBWA6"}]}},"emitted_at":1668290116621} +{"stream":"items","data":{"type":"ITEM","id":"HVLRXWCAJ2MBGSXFQV6UW2DI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Military politics","description":"Ask billion sure add woman. With worker identify old yourself quite here.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"SY3TX27SYYG6VK4YE25RN2IY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HVLRXWCAJ2MBGSXFQV6UW2DI","name":"From","sku":"1271","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"QH67LFOSN6B6QK6AFJQRJDCA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"HVLRXWCAJ2MBGSXFQV6UW2DI","name":"Staff","sku":"1271","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":17900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116621} +{"stream":"items","data":{"type":"ITEM","id":"D5QSJNEGYP7WPND6FLZ6FQVX","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Fill doctor","description":"Week process floor skill. Return place total return meeting include finish.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"5MOSS6V7ATUWOYHWSVKQ6CTJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"D5QSJNEGYP7WPND6FLZ6FQVX","name":"Real","sku":"1276","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RGXOE65KCDZAMLWSHNCMV2FH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"D5QSJNEGYP7WPND6FLZ6FQVX","name":"Side","sku":"1276","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":27600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116621} +{"stream":"items","data":{"type":"ITEM","id":"Z55VIPWS3GPCZ7OIPUVAVXIQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Involve single","description":"Century suddenly step.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"T4WV6BHS6IQ3XUTDGLZUN6GJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z55VIPWS3GPCZ7OIPUVAVXIQ","name":"After","sku":"1221","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"AEUAATZTYREIPNKQJCDZ6H3K","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"Z55VIPWS3GPCZ7OIPUVAVXIQ","name":"Military","sku":"1221","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116621} +{"stream":"items","data":{"type":"ITEM","id":"MXDEEVDCWGC3ZR65ZY7LV6HE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Right kid","description":"Skill free instead design. Student thing certainly edge politics goal.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"X6LBKDKVA34IDYIOMFK5IRNG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MXDEEVDCWGC3ZR65ZY7LV6HE","name":"","sku":"1239","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":20800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"YNFU4Y3CSZR5K7XRWFVNKMKF","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-11T10:40:37.932Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Accept try","description":"Visit north agency population realize practice everyone process.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","tax_ids":["C3EB6HITDFUUSQJIHM7KGFRU"],"variations":[{"type":"ITEM_VARIATION","id":"2DVJIZQQJFSSUUUYASUP23SF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YNFU4Y3CSZR5K7XRWFVNKMKF","name":"","sku":"1262","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"CP5SMKQNKJ6NUGYXL3343T5T","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Rock purpose","description":"Career perhaps media require who. First all strategy affect pretty green.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"QEDLLW2IFCTDRJ6ZSHDKGOLV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CP5SMKQNKJ6NUGYXL3343T5T","name":"","sku":"1147","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"CMV7BPRU4UBPKLOPCNCAAD2K","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Game international","description":"Often cause tough report. Couple Mr everybody wall lay ready stand rest.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"XBR6O4RM2WIJZ65TFZHKJ23Y","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CMV7BPRU4UBPKLOPCNCAAD2K","name":"","sku":"1155","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"CFNSVLWKSBKDMS7AJUJVUU3F","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Cold amount","description":"Inside plan a somebody crime. Middle whatever together community.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"BDQXIV7HXUTCMTU7WAID37OU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"CFNSVLWKSBKDMS7AJUJVUU3F","name":"","sku":"1190","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"U5KCH2Z5EXPXNEFB5GWYVRI7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Store which","description":"Could against together one factor song another over. Cell subject while score.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"O6D3KEHLTCQSIFSRTMNYBMYP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U5KCH2Z5EXPXNEFB5GWYVRI7","name":"Range","sku":"1216","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"BPYXV72ZMZTWJEECSUXD74AB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U5KCH2Z5EXPXNEFB5GWYVRI7","name":"Study","sku":"1216","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":2600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"AYDRG6NNJSDCJVSWZTT5ZEGC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Night cover","description":"Window age hope remain choose federal operation. Do near information.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"HV4PV3RTSQCSIJLZPAU6EAHP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"AYDRG6NNJSDCJVSWZTT5ZEGC","name":"","sku":"1189","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"MB4O7S22VAJ76XEMJWLHONV6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Individual recently","description":"Serve popular movie medical professor reduce. Goal economic guess young.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"I7EMJSHYEUFO4M3AB6CKK4GF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MB4O7S22VAJ76XEMJWLHONV6","name":"Officer","sku":"1241","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"2MFXOJA6N5QXGS2FSXAA4O4D","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MB4O7S22VAJ76XEMJWLHONV6","name":"Collection","sku":"1241","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":18400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"X4ZACEF5ZXOLRI5FCHFKYMMV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Prevent grow","description":"Money own thing sea this. Course building sea social together military moment.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"Y77L6Z67O6GDXRERLEUL6LEX","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X4ZACEF5ZXOLRI5FCHFKYMMV","name":"","sku":"1270","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116622} +{"stream":"items","data":{"type":"ITEM","id":"XO44IAXEZ6CNPHSPOGV5T2MP","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-11T10:40:37.932Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"And information","description":"You close fund ready. Statement forward realize side.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"WVORE4SI5PLZ323GHBSOXUHV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XO44IAXEZ6CNPHSPOGV5T2MP","name":"","sku":"1120","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116623} +{"stream":"items","data":{"type":"ITEM","id":"EDPXVGDSOEYGAODIJI5L22DB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Outside whole","description":"System hotel challenge should. Toward begin source else.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"YB2YZUKUN3Z26CSZRSA4CYV5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EDPXVGDSOEYGAODIJI5L22DB","name":"Evening","sku":"1166","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"XDAJ7CYKTQWGOB4RDG4O77E7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EDPXVGDSOEYGAODIJI5L22DB","name":"Raise","sku":"1166","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":9100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116623} +{"stream":"items","data":{"type":"ITEM","id":"E4V5CGGQCP5LQKXX5DWYP4YA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Wish this","description":"Write yet nor during. Good strategy letter color.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"CNUGTFLAUUQBAQ75RITOE43N","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E4V5CGGQCP5LQKXX5DWYP4YA","name":"Result","sku":"1169","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":17600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"5AVRM56XB3R7X75O2EG4TAGL","item_option_value_id":"DAP6VPGUTX2LV46TYLNNUSFP"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"WGNVAABPJIB4VKFNJBMTPLHY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E4V5CGGQCP5LQKXX5DWYP4YA","name":"Brother","sku":"1169","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"5AVRM56XB3R7X75O2EG4TAGL","item_option_value_id":"TVJKRD7GZFYGAU26LHPLXZXU"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"5AVRM56XB3R7X75O2EG4TAGL"}]}},"emitted_at":1668290116623} +{"stream":"items","data":{"type":"ITEM","id":"FPVB3BDKSNW3UN4I4YOPFNYV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Eye inside","description":"His hard beyond street tend magazine. Scientist call act plan would.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"LSCCIPWFTIUBZVBGF6LG6HNH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FPVB3BDKSNW3UN4I4YOPFNYV","name":"Task","sku":"1176","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"RNVFK6XDWLGYN5W34MNBF5HO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FPVB3BDKSNW3UN4I4YOPFNYV","name":"Wrong","sku":"1176","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":5600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116623} +{"stream":"items","data":{"type":"ITEM","id":"VP4NWZHVI2KNWRES4UTYQMBV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Population many","description":"Top community one center. Real walk ground.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"2KK3OBHXDACIL2BXUAJ5ZTXY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VP4NWZHVI2KNWRES4UTYQMBV","name":"Whole","sku":"1181","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"CONHSIGPIC25RLALLEJGYQ6B","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"VP4NWZHVI2KNWRES4UTYQMBV","name":"Physical","sku":"1181","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":8600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116623} +{"stream":"items","data":{"type":"ITEM","id":"PZ7PHODYLRGMENHCHSICMV36","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Body already","description":"Before structure common do successful. Color laugh ago note wonder.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"PWNZL4UNESMYAOS5DQA6C75W","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PZ7PHODYLRGMENHCHSICMV36","name":"","sku":"1220","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116623} +{"stream":"items","data":{"type":"ITEM","id":"6EHJZ5PF7HHFHCXQEKINSRQH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Require national","description":"Pattern current newspaper role themselves affect smile.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"STLM6CYS44VFZMMHK5KNYNPY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6EHJZ5PF7HHFHCXQEKINSRQH","name":"","sku":"1259","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116623} +{"stream":"items","data":{"type":"ITEM","id":"XTXVIJWGAVLNO3RJ53FGWY6Z","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Give address","description":"Lawyer lay set. Development light set different response federal.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"BDHL2MDY5REN7UHH5IOE4ZBA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XTXVIJWGAVLNO3RJ53FGWY6Z","name":"","sku":"1290","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":12300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116623} +{"stream":"items","data":{"type":"ITEM","id":"GSRSZHL5TRI74IATKIEMB4JP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Race alone","description":"Show employee according. Worker suffer still different soldier.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"25BBI36CMDUQDFQPXYIHYAA6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GSRSZHL5TRI74IATKIEMB4JP","name":"","sku":"1122","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":17800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"XVGM7YK756NKCW7NBKGPAMGG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Prepare anyone","description":"Woman type far. Evidence education record would some yeah teach.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"SWO2TFHGBM4Z54Z6IZJXAENU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XVGM7YK756NKCW7NBKGPAMGG","name":"Southern","sku":"1126","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ZWZZ42G7UF45EXJ3OS6BL457","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XVGM7YK756NKCW7NBKGPAMGG","name":"Let","sku":"1126","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":9100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"2V2YDESAMZHBPWFGVZHL6CZ2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"How community","description":"Performance yard local white only agree.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"IBZFCIMSINL36Q6NWAUK5QL6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"2V2YDESAMZHBPWFGVZHL6CZ2","name":"","sku":"1134","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"UZCRUQPYKMIIYXZY7UU66J2H","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Player them","description":"Many law around seat factor sort yes. Lot so couple remember fast small media.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"4JD3NTXUHOVK54ULNUGKJ7HK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UZCRUQPYKMIIYXZY7UU66J2H","name":"","sku":"1179","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"63QXOCSBGJEUQW7R6ZXVNOHM","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Because woman","description":"Performance street heavy off drive market. Nothing their sell senior lose near.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"JUJ5NZGXVQA66FWDWWYZ67C2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"63QXOCSBGJEUQW7R6ZXVNOHM","name":"","sku":"1198","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"UILN5X3QIWFHN2XCYNOQM2CW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Draw improve","description":"Wide record toward walk fund around. Rest bad per beautiful major.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"4MX62F5ZC7FPYAV3TM6P63VY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UILN5X3QIWFHN2XCYNOQM2CW","name":"","sku":"1200","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"6IAEN65SZFPL5K3POJR4OH6V","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Program much","description":"Claim here source who forward husband participant explain. Computer agree none.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"EEBGCCBA4YC3WEGXTPT63AB5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6IAEN65SZFPL5K3POJR4OH6V","name":"Base","sku":"1246","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":6800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"7KPHAK4BTJ74NWGDFRZFFULX","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6IAEN65SZFPL5K3POJR4OH6V","name":"Whether","sku":"1246","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":1100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"SSSIVCTUYWS3KOS2MI6GEXTP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Ahead begin","description":"Star first high discussion ready. Sport health suggest.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"EALELEFJ5PSA7XMVRKMKEXRX","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"SSSIVCTUYWS3KOS2MI6GEXTP","name":"","sku":"1278","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"DN52K2DEC6Q4PQATXBIABN37","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"What house","description":"Bar least machine open structure worker simple.","category_id":"K3QD7ZFECSYY5ORPJNU5GOW7","variations":[{"type":"ITEM_VARIATION","id":"C4LVBZKO3ERYE4KBWSN6YUC7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DN52K2DEC6Q4PQATXBIABN37","name":"Support","sku":"1129","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":10700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XP2D5P4RXHBSLIH32UJ42ZZX","item_option_value_id":"3Y24HNUG44WALJW6NAYPX7F2"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"JUHUQVLVI3CYFC6HZSONP6CY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"DN52K2DEC6Q4PQATXBIABN37","name":"Run","sku":"1129","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"XP2D5P4RXHBSLIH32UJ42ZZX","item_option_value_id":"KB2JQKZ7LP3STEV26ICQCGV6"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"XP2D5P4RXHBSLIH32UJ42ZZX"}]}},"emitted_at":1668290116624} +{"stream":"items","data":{"type":"ITEM","id":"FFYSARPACMDKPSBKV2ZA7YEC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Region event","description":"Represent rise trouble. Give health year after although high loss.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"M4MNCI5KLXLYL7EOACFODJVE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FFYSARPACMDKPSBKV2ZA7YEC","name":"These","sku":"1273","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":21100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"JZ3QUDDJXR54XXWK2F2LQFYO","item_option_value_id":"6TDETCNAOUPHRTWB6QQSHEKC"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"37IK2BABZCKHV2I2U5FTNG2V","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FFYSARPACMDKPSBKV2ZA7YEC","name":"Face","sku":"1273","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"JZ3QUDDJXR54XXWK2F2LQFYO","item_option_value_id":"35XERWJU5ZY2ONYQYPTCZUI3"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"JZ3QUDDJXR54XXWK2F2LQFYO"}]}},"emitted_at":1668290116625} +{"stream":"items","data":{"type":"ITEM","id":"PN2OTLGR3642NGXRCWMKHBWW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Concern out","description":"If join property seem around serve.","category_id":"3HOMHLR5RXUGPKLGHL4LTJ3H","variations":[{"type":"ITEM_VARIATION","id":"P5IQJV4FCDE7L2U3MNKRTAJQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PN2OTLGR3642NGXRCWMKHBWW","name":"","sku":"1280","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":22000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116625} +{"stream":"items","data":{"type":"ITEM","id":"MEWFIPQLUYKJEL37R22MSZAO","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-11T10:40:37.932Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Amount model","description":"Affect court they company I range. Simply maybe also charge professional.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","tax_ids":["CWU3GDBRZJ4TPNCVTX7AL6Q7"],"variations":[{"type":"ITEM_VARIATION","id":"YXHHULLSJBUVSTT7SMWONHKP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"MEWFIPQLUYKJEL37R22MSZAO","name":"","sku":"1245","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116625} +{"stream":"items","data":{"type":"ITEM","id":"I6DNCOCIL324TLHXJ7VTFUHI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Treatment information","description":"Finish couple five security. Push knowledge class education drive sense.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"DFBIEDHEBQHTZYQ7KM4D2GYC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"I6DNCOCIL324TLHXJ7VTFUHI","name":"","sku":"1253","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116625} +{"stream":"items","data":{"type":"ITEM","id":"ZV533N7VAQAJOYBEC6WZNSYN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Spring affect","description":"Require ok even first of high contain. Most center drop more none.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"6TA4QH6EXMAV26PTKWNREUBD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZV533N7VAQAJOYBEC6WZNSYN","name":"Report","sku":"1261","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":10000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"HHVFEMMF7XYZ5A5NMPEIBI2V","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZV533N7VAQAJOYBEC6WZNSYN","name":"Experience","sku":"1261","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116625} +{"stream":"items","data":{"type":"ITEM","id":"X57SJKPUTEBKGJVUJVKBRJTT","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Last design","description":"Hot west near house course city particularly. Choice similar partner near idea.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"LVO4AVDWKL5AB3WQNV6QH6RN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"X57SJKPUTEBKGJVUJVKBRJTT","name":"","sku":"1284","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116625} +{"stream":"items","data":{"type":"ITEM","id":"IK57VMBA45GZSQS7POVQVVCG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"List social","description":"Level law they. Rather history project much onto team for. Him range analysis.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"5ZA5FXVDECQOXWSEF7RHDR6E","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IK57VMBA45GZSQS7POVQVVCG","name":"","sku":"1112","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116625} +{"stream":"items","data":{"type":"ITEM","id":"4FF4JPDCWGEI2TJ3OSFSYE65","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Choice statement","description":"Eight real everyone. Risk less position campaign which.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"KOI3CKKP76YRLCVPQV267QSE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4FF4JPDCWGEI2TJ3OSFSYE65","name":"","sku":"1184","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":9000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116625} +{"stream":"items","data":{"type":"ITEM","id":"6OP5GNX3ZCXRBIDOKQ5ERTZ2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Indeed sometimes","description":"Age instead poor picture entire.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"IJGNBWQNRFIVRYUNTFVYJWC4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6OP5GNX3ZCXRBIDOKQ5ERTZ2","name":"","sku":"1215","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"JZIIUMMFLHUB3KT5WQO4TKHX","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Old near","description":"Another yeah food. Simple during pass call carry thank else.","category_id":"2GBTQT76RJMAS6E4SSZLRWBJ","variations":[{"type":"ITEM_VARIATION","id":"MNG5VU22N6MX6VRUZSD3JYFG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JZIIUMMFLHUB3KT5WQO4TKHX","name":"","sku":"1242","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"ONKUTDEGCNS2ZX636QI762YP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Response big","description":"Item form place her top card.","category_id":"7L4RDYM6MUNS5H3NBZZDUP3C","variations":[{"type":"ITEM_VARIATION","id":"O6J4DYFFQGBXTIY3IZQZ6N3K","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ONKUTDEGCNS2ZX636QI762YP","name":"Doctor","sku":"1306","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"6SRNNW7VSCOBR3ZT2RLFCAZ3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ONKUTDEGCNS2ZX636QI762YP","name":"Ball","sku":"1306","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":16500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"P6BDG4CY3BSLYNSWBZ3NRWK5","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Half mouth","description":"Upon officer want. Hospital your lead serve. Everyone weight sing long guess.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"4LA354GG7GJJ7V6UWVFO4EGI","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"P6BDG4CY3BSLYNSWBZ3NRWK5","name":"","sku":"1269","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"ZVTMBYHDIIL2A7D5NL76V4IJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Respond congress","description":"Agent form crime down Democrat brother hot.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"7OZCNPFAKEBASOTXMFHCNALC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZVTMBYHDIIL2A7D5NL76V4IJ","name":"","sku":"1282","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":23000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"ED7Q25H4NC3RXHSUSXN76U33","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Data fine","description":"Available education kind instead. Senior or vote across.","category_id":"IVAYQ2PTHLSRNTBOGHROPHYK","variations":[{"type":"ITEM_VARIATION","id":"OOEGHZC42SRUFXBYRLF3CT2L","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ED7Q25H4NC3RXHSUSXN76U33","name":"White","sku":"1136","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":8500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"LPDVJGHPUU22NAHGETFCQV7T","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ED7Q25H4NC3RXHSUSXN76U33","name":"Purpose","sku":"1136","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":20000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"E3ZSBAZEPPT5AE4UXWBXQF7E","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Focus before","description":"Deal beat your along recently traditional.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"74HPR6FRX36JBRJ4YIJNOH5G","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"E3ZSBAZEPPT5AE4UXWBXQF7E","name":"","sku":"1170","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"WKCMBSYKHGW4CB764XAQSWZC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Respond step","description":"Yet he structure chair peace. Good stuff charge husband.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"76C7CKDXEAZ4D4OL34QE2PEY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WKCMBSYKHGW4CB764XAQSWZC","name":"","sku":"1219","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"U6R3F5QVJZNDYI7YMFTALP3F","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Process professor","description":"Prevent young various outside. Follow pass have as or fish PM after.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"7XVZIHYWVQNUMQY6ISLHGEE2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"U6R3F5QVJZNDYI7YMFTALP3F","name":"","sku":"1228","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":15200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116626} +{"stream":"items","data":{"type":"ITEM","id":"FKA7GD3GU6D6DE6N5MP4ZUT4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Over lay","description":"Successful scene company usually as certain.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"Q5G4TC4GPN7UAG5NV4BA2OKS","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FKA7GD3GU6D6DE6N5MP4ZUT4","name":"","sku":"1144","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":24100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"5FR7BHMLSA3CFJREN7GORLLA","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Her door","description":"Ability sea hot season sister stock beyond.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"5EQQMNJTGWILXQOSO7ANZOAS","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"5FR7BHMLSA3CFJREN7GORLLA","name":"","sku":"1230","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":27700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"H4URWOH2IB4UFKUNWXSAX4QN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Senior security","description":"Feel mother political line. Soon benefit range close various.","category_id":"7L4RDYM6MUNS5H3NBZZDUP3C","variations":[{"type":"ITEM_VARIATION","id":"I5XWI5SVUJIJJ4RNJAXKGK4K","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H4URWOH2IB4UFKUNWXSAX4QN","name":"Much","sku":"1305","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":14400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"JBYXTA25J7HGJJF32NES37OZ","item_option_value_id":"R5BJNVPR3FJNIT5NL4ORXE6V"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"TSEZ432QG5N23B22HDKJCVC4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"H4URWOH2IB4UFKUNWXSAX4QN","name":"Investment","sku":"1305","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"JBYXTA25J7HGJJF32NES37OZ","item_option_value_id":"FASODMY2LGVMEETO5P2EO7CH"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"JBYXTA25J7HGJJF32NES37OZ"}]}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"UPJVA4SQXG3KPTH5TDHIFE3Q","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Produce issue","description":"Attorney partner bar goal. Become song such. Share practice clear.","category_id":"WCDERO4UKYIJE4HKGS7J2422","variations":[{"type":"ITEM_VARIATION","id":"JETE7YFCPEIJKJYJ4KWICMF6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UPJVA4SQXG3KPTH5TDHIFE3Q","name":"","sku":"1252","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5100,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"YNQHRTCMFVQUZMDNPU2PD3KX","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"True player","description":"Win right past star natural agency whom against.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"43FJ4E27BEYB3SNXSKJNR2LB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YNQHRTCMFVQUZMDNPU2PD3KX","name":"","sku":"1283","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"XK35JBGTWEO3F4V2GVDHX7GQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Notice idea","description":"Certain third me whole card heavy sort set. Billion rich house tree.","category_id":"7L4RDYM6MUNS5H3NBZZDUP3C","variations":[{"type":"ITEM_VARIATION","id":"6TAHQOVTI6UBWR3OAYERXKIO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"XK35JBGTWEO3F4V2GVDHX7GQ","name":"","sku":"1303","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11400,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"FF64DLABEGW3ZEVMEZZDFZUV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Read pick","description":"Commercial involve oil company research.","category_id":"XSPUHVDBOLCYYJQM2SYHTG3N","variations":[{"type":"ITEM_VARIATION","id":"CYQR5XCQDUA7LFN6MHVRYZDF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FF64DLABEGW3ZEVMEZZDFZUV","name":"Assume","sku":"1116","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"YG47NH746UMVAZKYFB56ZVVU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"FF64DLABEGW3ZEVMEZZDFZUV","name":"Mrs","sku":"1116","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"IZBKX7Y52ZIDZREMKHAXSUUN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"College just","description":"Door left box land the against green.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"R7ME57VEBXW6TIDTXOUFZ3GB","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"IZBKX7Y52ZIDZREMKHAXSUUN","name":"","sku":"1162","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"6ZHFPQRDG6TKP5EPBXVE56WS","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Media huge","description":"Floor stage activity pass body apply kind.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"B5CJAKLTPTOMU5MU5RQM3WZY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6ZHFPQRDG6TKP5EPBXVE56WS","name":"","sku":"1172","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116627} +{"stream":"items","data":{"type":"ITEM","id":"NSXZBCLKDVKUBCCWQ6IM637X","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Throughout direction","description":"Policy level attack much trip. Admit task respond after full trip.","category_id":"FHPAPWZ6KBVEOQKQWI26R6AF","variations":[{"type":"ITEM_VARIATION","id":"OEZ3HX2WBBQFVR7SQQXJVO4I","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NSXZBCLKDVKUBCCWQ6IM637X","name":"","sku":"1214","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116628} +{"stream":"items","data":{"type":"ITEM","id":"4HXFGBW7R5RDL2ULJHULZ4R2","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Treat wide","description":"Your dinner job black here party. Right young mean.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"WQQTL3HHBVEVGSGN3QADZUSH","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"4HXFGBW7R5RDL2ULJHULZ4R2","name":"","sku":"1174","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116628} +{"stream":"items","data":{"type":"ITEM","id":"GO3RQE4L24NQOHZXRHAZFAYP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Kitchen either","description":"Fine song strategy firm win. Night how huge front can particularly.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"ZEFSPWICMLBT3SHLUAHQMTCT","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"GO3RQE4L24NQOHZXRHAZFAYP","name":"","sku":"1180","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":21300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116628} +{"stream":"items","data":{"type":"ITEM","id":"BBUHP7R43C7FIGQJB2JAKREV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Real seven","description":"Western director carry ahead. Cultural this purpose.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"NG6KOHR5TLBLWPFHKDUS62PE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BBUHP7R43C7FIGQJB2JAKREV","name":"","sku":"1182","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":26300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116628} +{"stream":"items","data":{"type":"ITEM","id":"JPURM53LRRKMCR6MJYZ47HHJ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Technology lot","description":"Around thus number into official nearly.","category_id":"GWULG7OVEXD32YEGIRHMYBEU","variations":[{"type":"ITEM_VARIATION","id":"GDHEZY6IFDZMLBVTBJE7H7LN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JPURM53LRRKMCR6MJYZ47HHJ","name":"Claim","sku":"1265","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":20700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"45DIWQBAHAY7OTCAG6X652EE","item_option_value_id":"7SDUIRLBH5SU2VHCL3RBQB4Y"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"PECS2UW54W6ISYY3D4XKSISD","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"JPURM53LRRKMCR6MJYZ47HHJ","name":"Take","sku":"1265","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":18200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"45DIWQBAHAY7OTCAG6X652EE","item_option_value_id":"JTXQ5M2PN2RVCSNPOIHFRKQE"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"45DIWQBAHAY7OTCAG6X652EE"}]}},"emitted_at":1668290116628} +{"stream":"items","data":{"type":"ITEM","id":"EUAAPYXAX5II2T5FIH22CK3R","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Indeed while","description":"Left second center boy. Idea source pressure once politics garden care.","category_id":"N2Q7KWMDPM6SU4U32D2KLWSM","variations":[{"type":"ITEM_VARIATION","id":"UC7VRKHSN6VRMKAFJUE5HM7E","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"EUAAPYXAX5II2T5FIH22CK3R","name":"","sku":"1149","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116628} +{"stream":"items","data":{"type":"ITEM","id":"F6TFEUAVMRO6JHU3AUMBSBVW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"East prevent","description":"Call serious house arm. High heavy song hot nor feeling. Drug expect energy.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"QPC2L237FBSD4V7GG7WRRVNE","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F6TFEUAVMRO6JHU3AUMBSBVW","name":"Attorney","sku":"1153","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":17800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"DEXKEJZU76EFCEGKTXPSCEFM","item_option_value_id":"VGHMJVG375EXQSF5YQYHLKRJ"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"IGIH2A3JYEX5KHA2XJYQBOIU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"F6TFEUAVMRO6JHU3AUMBSBVW","name":"Identify","sku":"1153","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":3300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"DEXKEJZU76EFCEGKTXPSCEFM","item_option_value_id":"KNNQMBRZ452PANS34CTUJ4GD"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"DEXKEJZU76EFCEGKTXPSCEFM"}]}},"emitted_at":1668290116628} +{"stream":"items","data":{"type":"ITEM","id":"C3ZOARJPURFMABSNXFWAY53J","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yes official","description":"Break leader call practice. Lot individual process.","category_id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","variations":[{"type":"ITEM_VARIATION","id":"2VCWSN4VS7OCZCSBLGPEDPH6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"C3ZOARJPURFMABSNXFWAY53J","name":"","sku":"1159","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":25900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116628} +{"stream":"items","data":{"type":"ITEM","id":"WWEMRTIWU6K6FYWNF45EUAD3","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Democrat face","description":"Before final article work lead red debate five. Source great away.","category_id":"4DY6VXRDCB7BCGKIBCUBLN5Q","variations":[{"type":"ITEM_VARIATION","id":"JAIZEXPHPLJ44E6QR2GMQCT6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WWEMRTIWU6K6FYWNF45EUAD3","name":"","sku":"1165","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":5200,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"YF6TWR5PPMBGARLDDO36R3RN","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Those much","description":"Road energy senior bring out.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"BXIAG5A64YW7MQFUKPHT5S4D","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YF6TWR5PPMBGARLDDO36R3RN","name":"Will","sku":"1291","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":4800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"2K7VC6XBPDCS76I2TIP6V3GT","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"YF6TWR5PPMBGARLDDO36R3RN","name":"Within","sku":"1291","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":29700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"ZMG6BRKVAMHQJ7A2QQW3WRPO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Particular author","description":"Do look save PM head letter. Call scene difference those join game.","category_id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","variations":[{"type":"ITEM_VARIATION","id":"ES3I767Q646NM7AEMZY5V5BK","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"ZMG6BRKVAMHQJ7A2QQW3WRPO","name":"","sku":"1293","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":28600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"UETQ5GNE6ZKCUR7MKMFWQMBG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Others tv","description":"Trade language watch worker PM type. Perform so ago organization whose move.","category_id":"IHKPMJOEH6GU53XOWG72SMUZ","variations":[{"type":"ITEM_VARIATION","id":"IPC3MPK5VKVCOA7PPTV535YU","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"UETQ5GNE6ZKCUR7MKMFWQMBG","name":"","sku":"1188","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"BJ45TGDJTWS4TQGOZIEPBFM7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Kitchen build","description":"Year lay hold. Scene coach case science speak mother side.","category_id":"EZVIZMC7P5QXECTXGZIXUMEF","variations":[{"type":"ITEM_VARIATION","id":"UCYMQE2QAW3PQO7B5I33C5BL","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BJ45TGDJTWS4TQGOZIEPBFM7","name":"","sku":"1199","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16300,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"NGJ2MG23NQIDVSDUYD55WXXY","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Center protect","description":"Evening night if book brother hotel.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"4XT6DGLVJLGVDNQS7K4JQBZO","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NGJ2MG23NQIDVSDUYD55WXXY","name":"Attention","sku":"1225","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":22600,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"FUGH4VFXEDFBZIS2EXCZEPD4","item_option_value_id":"AZAA3LKS6PDZRADQQG74BLSM"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"AUWO6GX4FQIUWA32A6T5H7DF","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NGJ2MG23NQIDVSDUYD55WXXY","name":"Form","sku":"1225","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":11800,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"FUGH4VFXEDFBZIS2EXCZEPD4","item_option_value_id":"WIIMHGCVB5EKSY56QKQH5NTR"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"FUGH4VFXEDFBZIS2EXCZEPD4"}]}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"6U5TC3URYI6PSVDTLNLIUKPW","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Yard home","description":"Claim large building space forward herself second.","category_id":"PBOPNL6B4C6AOIGJ4PWWECPV","variations":[{"type":"ITEM_VARIATION","id":"N3JZXRLV4TBBRPE5O2SJ3AIV","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6U5TC3URYI6PSVDTLNLIUKPW","name":"Create","sku":"1226","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":19500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"ARRVAPNJFLOQOVF7LAUGZ5EQ","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"6U5TC3URYI6PSVDTLNLIUKPW","name":"Left","sku":"1226","ordinal":2,"pricing_type":"FIXED_PRICING","price_money":{"amount":7500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"NUYGSIZ3TYDS7CKZKTFT3NX7","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Third word","description":"Story pay sit candidate hair reflect choice. They bank official score.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"2ITSJDPDCK5ZOWQ675TJ7F2C","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"NUYGSIZ3TYDS7CKZKTFT3NX7","name":"","sku":"1173","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"WXH7FG46NRJEPM6DKZ2WMCNC","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Dark arrive","description":"Bring listen page account. Turn process school when important again father.","category_id":"KAVGPDLXADLBPVRK34MPGLJH","variations":[{"type":"ITEM_VARIATION","id":"QQR43GIFSVZESH2IPH7I4O3T","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"WXH7FG46NRJEPM6DKZ2WMCNC","name":"","sku":"1175","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":7500,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116629} +{"stream":"items","data":{"type":"ITEM","id":"PWAYIORV2U3IZCDZCCDLWPZ6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Something participant","description":"Husband serve past future. Sell her campaign executive herself.","category_id":"N6TVG5X3PB6XORMVD4OXWYK6","variations":[{"type":"ITEM_VARIATION","id":"X64EA3ISTGELDYYOZQEPKXRG","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PWAYIORV2U3IZCDZCCDLWPZ6","name":"Computer","sku":"1233","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":28900,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"D4KAYIBL7RVQQR2A7F2HAYZH","item_option_value_id":"7L6UL375GRJH67USC5FCRNN6"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"VZVYIBCUYGZD4DTUCJ2FEQU4","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"PWAYIORV2U3IZCDZCCDLWPZ6","name":"Set","sku":"1233","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"D4KAYIBL7RVQQR2A7F2HAYZH","item_option_value_id":"PNHAFFVP6RLBSJSAYZIF35MN"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"D4KAYIBL7RVQQR2A7F2HAYZH"}]}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"BFHE6PHXOSRBAURC5IKZ7T7T","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_data":{"name":"Laugh learn","description":"Amount such region fill action. Population line sit use different call.","category_id":"TI2ELJXQRZSFARURIUE5KXSP","variations":[{"type":"ITEM_VARIATION","id":"PT3UJBLZV6PO2BTV4EIUGZIP","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BFHE6PHXOSRBAURC5IKZ7T7T","name":"Continue","sku":"1289","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":23000,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PPUXNXFUZVM42HSZTPFQFEY3","item_option_value_id":"OHUGEUUHA4DCENQFGSY6433Y"}],"sellable":true,"stockable":true}},{"type":"ITEM_VARIATION","id":"M3LY5557EVFYRRYJZCDU2HB6","updated_at":"2021-06-11T10:40:37.932Z","created_at":"2021-06-11T10:40:37.932Z","version":1623408037932,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"item_variation_data":{"item_id":"BFHE6PHXOSRBAURC5IKZ7T7T","name":"Cover","sku":"1289","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":16700,"currency":"USD"},"location_overrides":[{"location_id":"LH2XR7AMG39HX","track_inventory":true}],"item_option_values":[{"item_option_id":"PPUXNXFUZVM42HSZTPFQFEY3","item_option_value_id":"GBTH3OF66ATW3Z5QW5Q6GDYF"}],"sellable":true,"stockable":true}}],"product_type":"REGULAR","item_options":[{"item_option_id":"PPUXNXFUZVM42HSZTPFQFEY3"}]}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"VYKQQZEP6YYFOPV752DIGD57","updated_at":"2021-06-11T10:50:34.617Z","created_at":"2021-06-11T10:50:34.617Z","version":1623408634617,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Cocoa","description":"Hot chocolate","abbreviation":"Ch","variations":[{"type":"ITEM_VARIATION","id":"OWHYBCAM5QCP63XB7WAVJYRI","updated_at":"2021-06-11T10:50:34.617Z","created_at":"2021-06-11T10:50:34.617Z","version":1623408634617,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"VYKQQZEP6YYFOPV752DIGD57","name":"Regular","ordinal":0,"pricing_type":"VARIABLE_PRICING","sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"JMFR6SSTFPOWGCQ25XKFQCRC","updated_at":"2021-06-18T20:06:13.184Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046773184,"is_deleted":false,"present_at_all_locations":true,"image_id":"XDD4SHZL5AEEIQ6KH2727CGZ","item_data":{"name":"Bacon Cheeseburger","description":"One mouth-watering, flame-grilled, quarter-pound angus beef burger with your choice of cheese on a sesame seed bun. Comes with a side of fries.","category_id":"CKTPCS3HCLZRGTPZ7SSYHSRL","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"LUQVGMEVRNVIHRI6NP7PERA6","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"JMFR6SSTFPOWGCQ25XKFQCRC","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":995,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"5KXSDTCL3QAL44YAJS7VFOND","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Fried Chicken Sandwich","description":"A buttermilk fried chicken thigh with crispy skin on a sesame seed bun. Topped with fresh red cabbage slaw and jalapeños and our house hot sauce.","abbreviation":"FCS","category_id":"CKTPCS3HCLZRGTPZ7SSYHSRL","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"5CPXAS53XYGOWLFZBAJB2PLL","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"5KXSDTCL3QAL44YAJS7VFOND","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":675,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"VNYVRU6AIRYTMTJ5SHIBOLPV","updated_at":"2021-06-18T20:06:13.13Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046773130,"is_deleted":false,"present_at_all_locations":true,"image_id":"6BTV2FFMJV6L2XUBCDGCPHZ4","item_data":{"name":"Sunny-Side Egg on Toast","description":"One farm-fresh sunny side up egg, tomato, and green peppers on a slice of our toast fresh from our bakehouse.","abbreviation":"ET","category_id":"OH7JPHFUZ6TCWUG76XIY5SQX","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"7AGBVLKH7Z54PMRQW27CNURD","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"VNYVRU6AIRYTMTJ5SHIBOLPV","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":495,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"ZOC3OVVYRUASZB4ZLAYOLWFY","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Grilled Steak","description":"Perfectly grilled flank steak that's been marinated in our award winning sauce, paired with fresh-from-the-farm veggies.","abbreviation":"BRF","category_id":"CKTPCS3HCLZRGTPZ7SSYHSRL","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"AARA4JE7SEQ5WYXZSFU4QEDR","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"ZOC3OVVYRUASZB4ZLAYOLWFY","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":1195,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"2HFJEGDDWAOXYLJTHVSJS6JY","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Italian Sandwich","description":"Salami, capicolla, ham, provolone, fresh lettuce, peppers, onion, and olive oil served on our homemade sourdough. What more could you want in a sandwich?","abbreviation":"IS","category_id":"CKTPCS3HCLZRGTPZ7SSYHSRL","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"SQROPLCNYE45XLNFKGKO4CZE","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"2HFJEGDDWAOXYLJTHVSJS6JY","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":895,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"ALAG552EG4KAOZHJM3WOONXT","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Meatballs","description":"Lean grilled lamb meatballs served with fresh greens. Perfect for those on a ketogenic diet.","abbreviation":"MB","category_id":"CKTPCS3HCLZRGTPZ7SSYHSRL","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"KMSLFM5WK35UCZFOFP4KDF27","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"ALAG552EG4KAOZHJM3WOONXT","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":695,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116630} +{"stream":"items","data":{"type":"ITEM","id":"NGWIS2P533WP6LI4MCTAZUNF","updated_at":"2021-06-18T20:06:12.915Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046772915,"is_deleted":false,"present_at_all_locations":true,"image_id":"UPWTMSLLZENMR7J73UV6267B","item_data":{"name":"Mediterranean Yogurt Bowl","description":"Greek yogurt topped with olives, chopped peppers, cucumber, crispy chickpeas, beans, and figs. Served with our fresh homemade pita.","abbreviation":"MYB","category_id":"CKTPCS3HCLZRGTPZ7SSYHSRL","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"GLDH7TJ5CDQDFS5IRTIU6WCS","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"NGWIS2P533WP6LI4MCTAZUNF","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":495,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116631} +{"stream":"items","data":{"type":"ITEM","id":"6BV7E7OJNRRA37WEK6VSOSOT","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Oatmeal with Fruit","description":"A classic hot breakfast comprised of our famous steel-cut oats topped with fruit and almond slices straight from locally owned farms.","abbreviation":"SB","category_id":"OH7JPHFUZ6TCWUG76XIY5SQX","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"UDNMOEUVBEKZKCN35KNWWJ3Y","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"6BV7E7OJNRRA37WEK6VSOSOT","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":495,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116631} +{"stream":"items","data":{"type":"ITEM","id":"6W4F5WM73OUJWZAT3RYCLH23","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Pancakes with Fruit","description":"The fluffiest, most perfectly golden pancakes you've ever had topped with fresh fruit from local farms. Real Canadian maple syrup served on the side.","abbreviation":"PF","category_id":"OH7JPHFUZ6TCWUG76XIY5SQX","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"YFQGRYL7HYBPFCHMHIZQB3QA","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"6W4F5WM73OUJWZAT3RYCLH23","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":995,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116631} +{"stream":"items","data":{"type":"ITEM","id":"J2N73GA3WSIYVES52K3LT5CQ","updated_at":"2021-06-18T20:06:12.118Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046772118,"is_deleted":false,"present_at_all_locations":true,"image_id":"W5RWCX4NE2BZO63PCXHIFF5X","item_data":{"name":"Salmon with Zucchini","description":"Fresh caught Alaskan king salmon served on a bed of braised spinach and diced zucchini.","abbreviation":"SZ","category_id":"CKTPCS3HCLZRGTPZ7SSYHSRL","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"JGM5T77FNI3NKWMYHUBCANVG","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"J2N73GA3WSIYVES52K3LT5CQ","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":1495,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116631} +{"stream":"items","data":{"type":"ITEM","id":"SYITYUC2QWSVI7U6HK3V6HRP","updated_at":"2021-06-18T20:06:12.598Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046772598,"is_deleted":false,"present_at_all_locations":true,"image_id":"IZLJZG5NHEPRE6Y6WWTG2STG","item_data":{"name":"Steak Tacos","description":"Two tacos with flank steak marinated for a minimum of 24 hours in our award-winning marinade. Topped with a mix of fresh cilantro and cooling cucumber.","abbreviation":"ST","category_id":"CKTPCS3HCLZRGTPZ7SSYHSRL","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"5Z2AJ4LC6TYQEQFERTPO2V6C","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"SYITYUC2QWSVI7U6HK3V6HRP","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":695,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116631} +{"stream":"items","data":{"type":"ITEM","id":"VPNWPUHJRVERDXPQVMFUDDVW","updated_at":"2021-06-18T20:06:12.477Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046772477,"is_deleted":false,"present_at_all_locations":true,"image_id":"CAPX5T4RZKEZLZ6IJVDZTMNT","item_data":{"name":"Autumn Soup","description":"The smoothest butternut squash soup you've ever had served with locally made goat cheese and toasted nuts.","abbreviation":"AS","tax_ids":["ZSUDRGZMZ4OT6NP4DRWT2E3S"],"variations":[{"type":"ITEM_VARIATION","id":"7NIQ7N6HLKHBDGXWOHEGNO7D","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"VPNWPUHJRVERDXPQVMFUDDVW","name":"Regular","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":695,"currency":"USD"},"sellable":true,"stockable":true}}],"product_type":"REGULAR"}},"emitted_at":1668290116631} +{"stream":"categories","data":{"type":"CATEGORY","id":"WBVNPPUWI2YCVI2XJZNHPSQC","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T09:58:41.311Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Drinks","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"FIMYVNYAQ3JS337TP6YBQBBQ","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Sign","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"NC7RMZ5L7KR262JLJVJTWBDY","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Quality","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"GWULG7OVEXD32YEGIRHMYBEU","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Instead","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"3HAZCNWXLQTQ3I5U6ZQLRLGK","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Side","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"5UPKZKY4OEGOEE5Y667AW2CH","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Information","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"J5Q2EAXIKYPJNRE2MZE23A7V","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Record","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"XWH36QTW2BSOFUPDF57GDE4V","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Fact","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"F6H7XOLU4RHSYTBCO7L5R3AI","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Save","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"DNYM5VGVTI75QYEAPOZOESLG","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Story","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"CUKTOF2MVTOTV5CPQSGC2ULP","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Prove","is_top_level":true}},"emitted_at":1668290117366} +{"stream":"categories","data":{"type":"CATEGORY","id":"H57NYT6SFNXEWZPIUWQW3XPV","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T21:56:26.794Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Agency","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"QRG5B4NQWYEXXS2K4D5TJTOU","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"City","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"BKCCRASGMLLS6IWQ2W6SLT2A","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"See","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"DRXMDFZHZAXFDJ2LQU3EZ34J","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Similar","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"TUL443L6U3PZWWUDSPRQHAQU","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Technology","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"5TSNRV2G6PJXFFHNHYPUWJWS","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Create","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"HZCT7IQM2RQBS3V3AXXO3XNC","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Alone","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"QMW6NPGADOC6Y7TPYQKFQ6PG","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Hot","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"UVLBUFBFEI3MM2OZZWUEKQOT","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Onto","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"GND3JALLXGURYRKK733QENFP","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Type","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"AOAUZ4LWYM4IZ62NXEMO4ADN","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Military","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"A7V2R2W54H3UM7TPEXFT5BMK","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Your","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"IHKPMJOEH6GU53XOWG72SMUZ","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Fill","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"3RDZ6OR3SZG52QSOUHHYV3AN","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Parent","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"TKDCFKKZ4RKPUGU2K23FD4QB","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Three","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"EWUMKEPVWFNF7XG64TYYJ7B3","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Person","is_top_level":true}},"emitted_at":1668290117367} +{"stream":"categories","data":{"type":"CATEGORY","id":"DGT73LVUMJBAHSSJ7B2KUET5","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"About","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"FKT5MXBV6OTB36UNGQQQPJ5T","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Yourself","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"HF7OW6YKDP376YIQNSB4A7DO","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Change","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"Y2YTTMOWV4DOS5IJMJZOJLA4","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Wait","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"XSBOX6V36HYM5VHUU2PWAK4M","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Spring","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"M6BZJRSPJKZDU5EELP4HALZW","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Away","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"ZONTPHF4OJPGMVR77OAWMAPY","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Past","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"ZLRHTMMGDRTISCIGHLCE5BFC","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Marriage","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"NLHVVB5MEK375LZAGY5PDOVB","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Professional","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"5LSBAPJ4KZU3ZQBXLCGL2K7X","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Billion","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"QBSUPAQFPTUWP5USD3DHVSR7","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"House","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"2CUO73D3VYI3GPSRCPW3C3QO","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Sport","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"VL5ZNG6IQN3JX4O43EK5HHPQ","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Generation","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"ZYWOYLITHWQVBKFWPPEBORLT","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Town","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"T6B5QL74PO6CROXESHQZFVIY","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"High","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"BUCBYOU4DOMMA2EECV4GKDE4","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Practice","is_top_level":true}},"emitted_at":1668290117368} +{"stream":"categories","data":{"type":"CATEGORY","id":"BFCKICLCVSEXGP7XHJJBE5S7","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Main","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"OUOYZZ2UM6PZK3NWLFQKTKKG","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Whether","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"RDKPWYO7NU62WZZA7MJPCHDJ","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Pay","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"QEIEB6ZJQFGBA2PABWZP2NKP","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Drug","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"WDPS6ZRWTED7A7DPFVJJQMPE","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"She","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"XLI4ZDKFDMNHEF6P7UHDVGT4","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Heart","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"5TMFVVFOKG5JNVWAPOHCP7KN","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Water","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"R5LO4QTTY65TKRM56GCGGWO4","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Life","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"5BP5IWSZMBRLUIZCZQ2RSXT3","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Over","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"U3LNOICLR663X5RPZFWDTAFM","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Rate","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"MSIFD5CTOY2WFB2FAM6KI7PB","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Add","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"MIGXNUZFGOZLRG7UT6LWCPIA","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Hospital","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"M7N4UP4HOGXAIWEVYWJ36XVF","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Either","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"6XGJYALDFLHHVEHV7MIGU5PV","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Name","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"DFESE72NCWVZ6FSMPSV62JK3","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Forward","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"KZYRRTE66AFWHCK4ASGSJBZB","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Raise","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"R7GGRBQIE7NRYLCRK4ZOLEB5","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Start","is_top_level":true}},"emitted_at":1668290117369} +{"stream":"categories","data":{"type":"CATEGORY","id":"X77EX5ETNYO2R5WXEA55K4KR","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Push","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"FFZKRX37QWOOAIDCJ3LSUX3Y","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Appear","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"HQ6ICDNDBSWDTR4SGCJE3BSH","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Or","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"HUFPCHOZATSPVD5BN7PWAMTT","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Go","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"2UOAOCSMBZJYAJBB2FKNFJMS","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Authority","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"JTNCHZSCPGLXXJFE6S2SFFHY","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Nearly","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"SV7ZVR63IIN5Z47EVWBSSO3E","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Girl","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"7AFLZ7ZUI4NBT24GHBJMXANE","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Despite","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"RE7VE3AUXBTW57TODIHFLM4C","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Only","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"M4BCTLQC3J5YNAEWBVBR7NKK","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Support","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"QG5QSLYW6LEYZXUI2NFNSFGF","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Property","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"TDZ6FKYRVGTDW6RD46JVF4JA","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Difficult","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"FCL4ZYCK2GQQY4KUS6ZQQ2T6","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Manager","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"CDYXXVGUQODXIV5LJWJZVFIF","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Back","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"LHRLRN4BZ7EUVN5NMREPZDDG","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Evening","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"UDAF47E5DMK3RQ2A2WQX57VA","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Program","is_top_level":true}},"emitted_at":1668290117370} +{"stream":"categories","data":{"type":"CATEGORY","id":"APYNRBQERO33TQO2GQS4QPQ3","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Lead","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"NVZICQ4XRU7SFCEPR7YXPVWP","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Yes","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"3F6KPRH2SRONZN5ACBGW6DDS","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Stop","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"G4KGGGI4OTLBU4XUXATILINN","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Down","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"3AO6QO4AU42HG23S27OQRNC2","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Suddenly","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"B7O2NCFZDWLFAE7TV6222HOM","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Thus","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"PEZAC6C67K4V525PX4FASGRP","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Act","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"NQZPC357BWLWJFGK6U4TBM7P","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Day","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"NH76RA74NP5U4LF2BRTI3Y5P","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"By","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"R2PRPL7BWLS4XE6V5T3XOWP7","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Economy","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"CLLT5F4OBQVPAK6W2D5D57SA","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Accept","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"XI2US2E52E2Z4JPTA4YKTAWG","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Future","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"OO7ZYEG6TTIZVWD2USP5I2OE","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Talk","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"SAGHK26FXLCVAYOAX5PX6OID","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Artist","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"EUOOIJ4J5OCZY5WNAIDEZCS7","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Beautiful","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"UCP4VSGW3BUUCWSEDOOYFP5D","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Guess","is_top_level":true}},"emitted_at":1668290117371} +{"stream":"categories","data":{"type":"CATEGORY","id":"BI4RJN77VHYUMPOOITI2E5H5","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Without","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"GBD7UK6BE4CJ7R2A7P7MFGX6","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Light","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"FIJJXETENFNYLAV52EJPAHR5","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Compare","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"WCDERO4UKYIJE4HKGS7J2422","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Anything","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"AKQKQJA3BJOZ3XGOYLE2USNK","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Across","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"KNXNC6NOIC6XFMEL2WBRV4D6","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Sit","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"7EHWDMHB5PCJK7O2H7IB3OPF","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Any","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"ILM3ZVIUU6KRQMSQ2VN5UADV","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Man","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"VLTSYPX33Q6SOCZZ7BVKM3CC","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Movement","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"JTDN7QUY6KM3E4JLHEOZZA42","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Kid","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"G254DMXKLHIMCDXBZM6GZSPW","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-10T22:25:28.608Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Both","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"3HOMHLR5RXUGPKLGHL4LTJ3H","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Blood","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"TI2ELJXQRZSFARURIUE5KXSP","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Speak","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"XSPUHVDBOLCYYJQM2SYHTG3N","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Between","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"SOZ2ZWW6BNZUNYK5CHLPFWDH","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Figure","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"N2Q7KWMDPM6SU4U32D2KLWSM","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Suggest","is_top_level":true}},"emitted_at":1668290117372} +{"stream":"categories","data":{"type":"CATEGORY","id":"KAVGPDLXADLBPVRK34MPGLJH","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Reduce","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"EZVIZMC7P5QXECTXGZIXUMEF","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Pressure","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"N6TVG5X3PB6XORMVD4OXWYK6","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Center","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"FHPAPWZ6KBVEOQKQWI26R6AF","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Role","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"PBOPNL6B4C6AOIGJ4PWWECPV","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Team","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"K3QD7ZFECSYY5ORPJNU5GOW7","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Set","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"IVAYQ2PTHLSRNTBOGHROPHYK","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Experience","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"7L4RDYM6MUNS5H3NBZZDUP3C","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Least","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"4DY6VXRDCB7BCGKIBCUBLN5Q","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Than","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"2GBTQT76RJMAS6E4SSZLRWBJ","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-11T10:40:37.932Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Voice","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"OH7JPHFUZ6TCWUG76XIY5SQX","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-18T20:06:02.883Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Breakfast","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"categories","data":{"type":"CATEGORY","id":"CKTPCS3HCLZRGTPZ7SSYHSRL","updated_at":"2022-10-19T19:33:30.646Z","created_at":"2021-06-18T20:06:02.883Z","version":1666208010646,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Entree","is_top_level":true}},"emitted_at":1668290117373} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"Q7AQZ6WPGAWPFAIYBTYT7XXP","updated_at":"2021-06-14T13:47:48.539Z","created_at":"2021-06-10T22:15:06.693Z","version":1623678468539,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["L9A5Y0JR014G1"],"discount_data":{"name":"discount_20_p","discount_type":"FIXED_PERCENTAGE","percentage":"20.0","application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS"}},"emitted_at":1668290117986} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"HKYNSSNT2XWGYGPQNPVWFEAG","updated_at":"2021-06-14T13:48:20.638Z","created_at":"2021-06-10T22:15:45.239Z","version":1623678500638,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"discount_data":{"name":"discount_5_p","discount_type":"FIXED_PERCENTAGE","percentage":"5.0","application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS"}},"emitted_at":1668290117987} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"TN6YCTI5DDYJTDQUW3VQ733L","updated_at":"2021-06-10T22:16:29.308Z","created_at":"2021-06-10T22:16:29.308Z","version":1623363389308,"is_deleted":false,"present_at_all_locations":true,"discount_data":{"name":"discount_1_usd","discount_type":"FIXED_AMOUNT","amount_money":{"amount":100,"currency":"USD"},"application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS"}},"emitted_at":1668290117988} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"N6TPMQELCOQZLHC5VAON2NCO","updated_at":"2021-06-14T13:05:10.374Z","created_at":"2021-06-14T13:05:10.374Z","version":1623675910374,"is_deleted":false,"present_at_all_locations":true,"discount_data":{"name":"Quantity discount","discount_type":"FIXED_PERCENTAGE","percentage":"5.0","pin_required":true,"application_method":"MANUALLY_APPLIED","modify_tax_basis":"DO_NOT_MODIFY_TAX_BASIS"}},"emitted_at":1668290117989} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"7NB64IW3PDL66PF6CB3WRGVZ","updated_at":"2021-06-14T13:47:56.799Z","created_at":"2021-06-14T13:06:38.495Z","version":1623678476799,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["L9A5Y0JR014G1"],"discount_data":{"name":"Quantity_discount_2","discount_type":"FIXED_AMOUNT","amount_money":{"amount":200,"currency":"USD"},"pin_required":true,"application_method":"MANUALLY_APPLIED","modify_tax_basis":"DO_NOT_MODIFY_TAX_BASIS"}},"emitted_at":1668290117989} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"QKPMMV3O6WTTWH54GLF7KRKQ","updated_at":"2021-06-14T13:48:09.959Z","created_at":"2021-06-14T13:07:44.261Z","version":1623678489959,"is_deleted":false,"present_at_all_locations":false,"present_at_location_ids":["LH2XR7AMG39HX"],"discount_data":{"name":"Quantity_discount_3","discount_type":"FIXED_AMOUNT","amount_money":{"amount":300,"currency":"USD"},"application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS"}},"emitted_at":1668290117990} +{"stream":"taxes","data":{"type":"TAX","id":"CWU3GDBRZJ4TPNCVTX7AL6Q7","updated_at":"2021-06-14T13:12:47.779Z","created_at":"2021-06-10T22:13:33.029Z","version":1623676367779,"is_deleted":false,"present_at_all_locations":true,"tax_data":{"name":"20_p","calculation_phase":"TAX_SUBTOTAL_PHASE","inclusion_type":"ADDITIVE","percentage":"20.0","applies_to_custom_amounts":false,"enabled":true,"tax_type_id":"us_sales_tax","tax_type_name":"Sales Tax"}},"emitted_at":1668290118598} +{"stream":"taxes","data":{"type":"TAX","id":"C3EB6HITDFUUSQJIHM7KGFRU","updated_at":"2021-06-15T13:17:49.723Z","created_at":"2021-06-10T22:13:47.037Z","version":1623763069723,"is_deleted":false,"present_at_all_locations":true,"absent_at_location_ids":["LH2XR7AMG39HX"],"tax_data":{"name":"5_p","calculation_phase":"TAX_SUBTOTAL_PHASE","inclusion_type":"INCLUSIVE","percentage":"5.0","applies_to_custom_amounts":true,"enabled":true,"tax_type_id":"us_sales_tax","tax_type_name":"Sales Tax"}},"emitted_at":1668290118598} +{"stream":"taxes","data":{"type":"TAX","id":"5X7QCTRTQ7MEUFFWF2ESR3IA","updated_at":"2021-06-15T13:18:45.628Z","created_at":"2021-06-15T13:18:45.628Z","version":1623763125628,"is_deleted":false,"present_at_all_locations":true,"absent_at_location_ids":["L9A5Y0JR014G1"],"tax_data":{"name":"15_p","calculation_phase":"TAX_SUBTOTAL_PHASE","inclusion_type":"ADDITIVE","percentage":"15.0","applies_to_custom_amounts":true,"enabled":true,"tax_type_id":"us_sales_tax","tax_type_name":"Sales Tax"}},"emitted_at":1668290118598} +{"stream":"taxes","data":{"type":"TAX","id":"ZSUDRGZMZ4OT6NP4DRWT2E3S","updated_at":"2021-06-18T20:06:02.883Z","created_at":"2021-06-18T20:06:02.883Z","version":1624046762883,"is_deleted":false,"present_at_all_locations":true,"tax_data":{"name":"Sales Tax","calculation_phase":"TAX_TOTAL_PHASE","inclusion_type":"ADDITIVE","percentage":"8.5","applies_to_custom_amounts":true,"enabled":true}},"emitted_at":1668290118598} +{"stream":"locations","data":{"id":"L9A5Y0JR014G1","name":"Coffe_shop","address":{"address_line_1":"1600 Pennsylvania Ave NW","locality":"Washington","administrative_district_level_1":"DC","postal_code":"20500","country":"US"},"timezone":"UTC","capabilities":["CREDIT_CARD_PROCESSING","AUTOMATIC_TRANSFERS"],"status":"ACTIVE","created_at":"2021-06-14T13:40:57.441Z","merchant_id":"ML7SCCR7EMAK4","country":"US","language_code":"en-US","currency":"USD","phone_number":"+1 800-444-4444","business_name":"Second_Test_Location","type":"PHYSICAL","website_url":"example.com","business_hours":{},"business_email":"some_email@coffee.com","description":"a brief bio","twitter_username":"test","instagram_username":"test","facebook_url":"facebook.com/example","mcc":"7299"},"emitted_at":1668290119400} +{"stream":"locations","data":{"id":"LH2XR7AMG39HX","name":"Default Test Account","address":{"address_line_1":"1600 Pennsylvania Ave NW","locality":"Washington","administrative_district_level_1":"DC","postal_code":"20500","country":"US"},"timezone":"UTC","capabilities":["CREDIT_CARD_PROCESSING","AUTOMATIC_TRANSFERS"],"status":"ACTIVE","created_at":"2021-04-30T05:16:05.977Z","merchant_id":"ML7SCCR7EMAK4","country":"US","language_code":"en-US","currency":"USD","business_name":"Default Test Account","type":"PHYSICAL","business_hours":{},"mcc":"7299"},"emitted_at":1668290119400} +{"stream":"team_members","data":{"id":"TMA-T96eUCnR9DkX","is_owner":true,"status":"ACTIVE","given_name":"Sandbox","family_name":"Seller","email_address":"sandbox-merchant+ryeggsjovidbpszhnwkskzvma10qzjcb@squareup.com","created_at":"2021-04-30T05:16:05Z","updated_at":"2021-04-30T05:16:05Z","assigned_locations":{"assignment_type":"ALL_CURRENT_AND_FUTURE_LOCATIONS"}},"emitted_at":1668290120212} +{"stream":"team_members","data":{"id":"TMcnrxWIJPlmU4c5","reference_id":"2","is_owner":false,"status":"ACTIVE","given_name":"Team","family_name":"Member_2","email_address":"team_member_2@airbyte.com","phone_number":"+19008080808","created_at":"2021-06-18T13:17:37Z","updated_at":"2021-06-18T13:17:37Z","assigned_locations":{"assignment_type":"EXPLICIT_LOCATIONS"}},"emitted_at":1668290120213} +{"stream":"team_members","data":{"id":"TMx95KdTStPnIxgp","reference_id":"1","is_owner":false,"status":"ACTIVE","given_name":"Team","family_name":"Member_1","email_address":"team_member_1@airbyte.com","phone_number":"+18008080808","created_at":"2021-06-18T13:15:49Z","updated_at":"2021-06-18T13:17:06Z","assigned_locations":{"assignment_type":"EXPLICIT_LOCATIONS"}},"emitted_at":1668290120213} +{"stream":"team_member_wages","data":{"id":"XGC1R9wiiymBJ4M1K8puuJGZ","team_member_id":"TMA-T96eUCnR9DkX","title":"Owner"},"emitted_at":1668290121140} +{"stream":"team_member_wages","data":{"id":"hFDaXrhWZ1BhnZLbrJTqqCfm","team_member_id":"TMcnrxWIJPlmU4c5","title":"Barista","hourly_rate":{"amount":2000,"currency":"USD"}},"emitted_at":1668290121141} +{"stream":"team_member_wages","data":{"id":"pC3birEsVhGyF58XjPvQ6BhD","team_member_id":"TMx95KdTStPnIxgp","title":"Cashier","hourly_rate":{"amount":2404,"currency":"USD"}},"emitted_at":1668290121141} +{"stream":"refunds","data":{"id":"NWO7kC96bJDUNKLovcUnapxGeOWZY_0um3GHK0AHt273xEe6I3u1y96Lnm018b0WAtyyOYRrP","status":"COMPLETED","amount_money":{"amount":1485,"currency":"USD"},"payment_id":"NWO7kC96bJDUNKLovcUnapxGeOWZY","order_id":"NpZRjYMGKOKeTe0BTp7N5r8kM0LZY","created_at":"2021-06-18T13:37:34.471Z","updated_at":"2021-06-18T13:37:37.319Z","processing_fee":[{"effective_at":"2021-06-18T15:31:43.000Z","type":"INITIAL","amount_money":{"amount":-51,"currency":"USD"}}],"location_id":"LH2XR7AMG39HX","reason":"Broken item","destination_type":"CARD"},"emitted_at":1668290122154} +{"stream":"refunds","data":{"id":"NWO7kC96bJDUNKLovcUnapxGeOWZY_BH7uyAXe6SqRc99uEExljMwERWZPci10Og6zIyfynAB","status":"COMPLETED","amount_money":{"amount":500,"currency":"USD"},"payment_id":"NWO7kC96bJDUNKLovcUnapxGeOWZY","order_id":"BFkIiV4W7baTDDx2CGGhdEzvTOCZY","created_at":"2021-06-22T19:35:20.612Z","updated_at":"2021-06-22T19:35:23.683Z","processing_fee":[{"effective_at":"2021-06-18T15:31:43.000Z","type":"INITIAL","amount_money":{"amount":-18,"currency":"USD"}}],"location_id":"LH2XR7AMG39HX","reason":"Overpayment","destination_type":"CARD"},"emitted_at":1668290122155} +{"stream":"customers","data":{"id":"WYP9CC9M156J71DMQF41Q8VMWW","created_at":"2021-06-18T14:02:43.476Z","updated_at":"2021-06-18T14:03:25Z","cards":[{"id":"ccof:k0ZuyEJ7sQGFsgfA4GB","card_brand":"VISA","last_4":"1111","exp_month":6,"exp_year":2026,"cardholder_name":"Test Customer","billing_address":{"postal_code":"12345"}}],"given_name":"Test","family_name":"Customer_1","email_address":"test_customer_1@airbyte.io","address":{"address_line_1":"street","address_line_2":"apt","locality":"city","administrative_district_level_1":"AL","postal_code":"35242"},"phone_number":"+18009090909","reference_id":"12345","company_name":"Company","preferences":{"email_unsubscribed":false},"creation_source":"DIRECTORY","birthday":"1990-08-09T00:00:00-00:00","segment_ids":["ML7SCCR7EMAK4.REACHABLE","ML7SCCR7EMAK4.CARDS_ON_FILE"],"version":1},"emitted_at":1668290124016} +{"stream":"modifier_list","data":{"type":"MODIFIER_LIST","id":"ZYESF2MGAMVORYB66VVXFW6V","updated_at":"2021-06-10T22:17:15.317Z","created_at":"2021-06-10T22:17:15.317Z","version":1623363435317,"is_deleted":false,"present_at_all_locations":true,"modifier_list_data":{"name":"With_accessory","selection_type":"MULTIPLE","modifiers":[{"type":"MODIFIER","id":"EW5DQKRKJH5LF2O5OM3TLT32","updated_at":"2021-06-10T22:17:15.317Z","created_at":"2021-06-10T22:17:15.317Z","version":1623363435317,"is_deleted":false,"present_at_all_locations":true,"modifier_data":{"name":"1_accessory","price_money":{"amount":100,"currency":"USD"},"on_by_default":false,"ordinal":1,"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V"}},{"type":"MODIFIER","id":"APBZ4WD5P3FPUYSLG4U7MEJF","updated_at":"2021-06-10T22:17:15.317Z","created_at":"2021-06-10T22:17:15.317Z","version":1623363435317,"is_deleted":false,"present_at_all_locations":true,"modifier_data":{"name":"2_accessory","price_money":{"amount":200,"currency":"USD"},"on_by_default":false,"ordinal":2,"modifier_list_id":"ZYESF2MGAMVORYB66VVXFW6V"}}]}},"emitted_at":1668290124798} +{"stream":"modifier_list","data":{"type":"MODIFIER_LIST","id":"MKW7LLF4IRUX773KBHH4XQZA","updated_at":"2021-06-14T13:10:54.797Z","created_at":"2021-06-14T13:10:54.797Z","version":1623676254797,"is_deleted":false,"present_at_all_locations":true,"modifier_list_data":{"name":"With_something_else","selection_type":"MULTIPLE","modifiers":[{"type":"MODIFIER","id":"IA66H4C4C6JNXMHXQI3LDWFP","updated_at":"2021-06-14T13:10:54.797Z","created_at":"2021-06-14T13:10:54.797Z","version":1623676254797,"is_deleted":false,"present_at_all_locations":true,"modifier_data":{"name":"something_else","price_money":{"amount":1000,"currency":"USD"},"on_by_default":false,"ordinal":1,"modifier_list_id":"MKW7LLF4IRUX773KBHH4XQZA"}},{"type":"MODIFIER","id":"CS5VQADEB4GZXEL3TWHQDRER","updated_at":"2021-06-14T13:10:54.797Z","created_at":"2021-06-14T13:10:54.797Z","version":1623676254797,"is_deleted":false,"present_at_all_locations":true,"modifier_data":{"name":"something_else_2","price_money":{"amount":1500,"currency":"USD"},"on_by_default":false,"ordinal":2,"modifier_list_id":"MKW7LLF4IRUX773KBHH4XQZA"}}]}},"emitted_at":1668290124799} +{"stream":"shifts","data":{"id":"M60G9R7E1H52J","employee_id":"TMA-T96eUCnR9DkX","location_id":"L9A5Y0JR014G1","timezone":"UTC","start_at":"2021-06-17T08:00:00Z","end_at":"2021-06-17T20:00:00Z","wage":{"title":"Owner","hourly_rate":{"amount":4050,"currency":"USD"}},"breaks":[{"id":"ZXR4CMNAEGXW6","start_at":"2021-06-17T10:00:00Z","end_at":"2021-06-17T11:00:00Z","break_type_id":"HDY9769K81MN7","name":"Lunch Break","expected_duration":"PT1H","is_paid":true},{"id":"2N4RYD910S698","start_at":"2021-06-17T17:00:00Z","end_at":"2021-06-17T17:30:00Z","break_type_id":"NEHDKJ0V03XP2","name":"Tea Break","expected_duration":"PT30M","is_paid":true}],"status":"CLOSED","version":1,"created_at":"2021-06-18T20:46:59Z","updated_at":"2021-06-18T20:46:59Z","team_member_id":"TMA-T96eUCnR9DkX"},"emitted_at":1668290125739} +{"stream":"shifts","data":{"id":"WET1AZXN164BB","employee_id":"TMA-T96eUCnR9DkX","location_id":"L9A5Y0JR014G1","timezone":"UTC","start_at":"2019-01-25T08:11:00Z","end_at":"2019-01-25T18:11:00Z","wage":{"hourly_rate":{"amount":1100,"currency":"USD"}},"breaks":[{"id":"Q00NYDFJ36K9Y","start_at":"2019-01-25T11:11:00Z","end_at":"2019-01-25T11:41:00Z","break_type_id":"NEHDKJ0V03XP2","name":"Tea Break","expected_duration":"PT30M","is_paid":true}],"status":"CLOSED","version":1,"created_at":"2021-06-18T20:37:39Z","updated_at":"2021-06-18T20:37:39Z","team_member_id":"TMA-T96eUCnR9DkX"},"emitted_at":1668290125741} +{"stream":"orders","data":{"id":"xHRYELdzIG3Fb9gJPuPk4shKafUZY","location_id":"LH2XR7AMG39HX","line_items":[{"uid":"h5XEkuLUYQ1LS7B8o42dVD","catalog_object_id":"PJF2F6CAXLYBCTSKHAY2HXXW","catalog_version":1624046773184,"quantity":"2","name":"Health drop","variation_name":"Congress","base_price_money":{"amount":10900,"currency":"USD"},"gross_sales_money":{"amount":21800,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":21800,"currency":"USD"},"variation_total_price_money":{"amount":21800,"currency":"USD"},"item_type":"ITEM"}],"fulfillments":[{"uid":"8ghcTCAgVT6kqWbrCdQxVB","type":"PICKUP","state":"COMPLETED","pickup_details":{"expires_at":"2021-07-01T20:21:54.859Z","pickup_at":"2021-07-01T19:21:54.859Z","note":"Pour over coffee","placed_at":"2021-06-29T21:32:32.387Z","accepted_at":"2021-06-29T21:47:07.804Z","ready_at":"2021-06-29T21:47:14.292Z","schedule_type":"SCHEDULED","recipient":{"display_name":"Jaiden Urie"},"auto_complete_duration":"P0DT1H0S","picked_up_at":"2021-06-29T21:47:16.440Z"}}],"created_at":"2021-06-29T21:09:26.402Z","updated_at":"2021-06-29T21:47:16.441Z","state":"COMPLETED","version":8,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":21800,"currency":"USD"},"closed_at":"2021-06-29T21:47:16.441Z","tenders":[{"id":"RK7310wbjzTWtIxoW1btCPNqYT6YY","location_id":"LH2XR7AMG39HX","transaction_id":"xHRYELdzIG3Fb9gJPuPk4shKafUZY","created_at":"2021-06-29T21:32:32Z","amount_money":{"amount":21800,"currency":"USD"},"type":"CARD","card_details":{"status":"CAPTURED","card":{"card_brand":"VISA","last_4":"5858","fingerprint":"sq-1-ebU3Ci-dcOxf-pVya9fDChHVLpXmNo73UaTsGbKLjBVtdqie8txHwuAY1SxA2F3c0g"},"entry_method":"KEYED"},"payment_id":"RK7310wbjzTWtIxoW1btCPNqYT6YY"}],"total_service_charge_money":{"amount":0,"currency":"USD"},"net_amounts":{"total_money":{"amount":21800,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-7KVC6qHcSDMXsm40SAA9TA"}},"emitted_at":1668290127537} +{"stream":"orders","data":{"id":"rOIV8oJ0c4jHUym6dQUscxJSUb4F","location_id":"L9A5Y0JR014G1","line_items":[{"uid":"EZHPqvnWeiTrOw8ONrDBKB","catalog_object_id":"DT52FVGPUEJ7KL5WYPIK5TTP","catalog_version":1624046773184,"quantity":"2","name":"Coffee","variation_name":"Black","base_price_money":{"amount":900,"currency":"USD"},"modifiers":[{"uid":"x5bl7VpXSZNqByeAvcvZyD","base_price_money":{"amount":100,"currency":"USD"},"total_price_money":{"amount":200,"currency":"USD"},"name":"1_accessory","catalog_object_id":"EW5DQKRKJH5LF2O5OM3TLT32","catalog_version":1624046773184}],"gross_sales_money":{"amount":2000,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":2000,"currency":"USD"},"variation_total_price_money":{"amount":1800,"currency":"USD"},"item_type":"ITEM"}],"fulfillments":[{"uid":"yNY39gzb50jUC1oZ9HxsFD","type":"PICKUP","state":"COMPLETED","pickup_details":{"expires_at":"2021-07-01T20:21:54.859Z","pickup_at":"2021-07-01T19:21:54.859Z","note":"Pour over coffee","placed_at":"2021-06-29T21:36:04.916Z","accepted_at":"2021-06-29T21:47:18.618Z","ready_at":"2021-06-29T21:47:18.618Z","schedule_type":"SCHEDULED","recipient":{"display_name":"Jaiden Urie"},"auto_complete_duration":"P0DT1H0S","picked_up_at":"2021-06-29T21:47:18.618Z"}}],"created_at":"2021-06-29T21:06:22.910Z","updated_at":"2021-06-29T21:47:18.620Z","state":"COMPLETED","version":5,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":2000,"currency":"USD"},"closed_at":"2021-06-29T21:47:18.620Z","tenders":[{"id":"HrQAhauwBhT6fdNRfguwoPyCPTdZY","location_id":"L9A5Y0JR014G1","transaction_id":"rOIV8oJ0c4jHUym6dQUscxJSUb4F","created_at":"2021-06-29T21:36:04Z","amount_money":{"amount":2000,"currency":"USD"},"type":"CASH","cash_details":{"buyer_tendered_money":{"amount":3000,"currency":"USD"},"change_back_money":{"amount":1000,"currency":"USD"}},"payment_id":"HrQAhauwBhT6fdNRfguwoPyCPTdZY"}],"total_service_charge_money":{"amount":0,"currency":"USD"},"net_amounts":{"total_money":{"amount":2000,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-7KVC6qHcSDMXsm40SAA9TA"}},"emitted_at":1668290127538} +{"stream":"orders","data":{"id":"j6IHHAKeyMaX9O75dd53KvxP8h4F","location_id":"L9A5Y0JR014G1","line_items":[{"uid":"9Xq6ErXwCPGNiIeJ5ow9zB","catalog_object_id":"SZTS6NG7OGC25KGTRXJEUAKK","catalog_version":1624046773184,"quantity":"2","name":"Coffee","variation_name":"White","base_price_money":{"amount":1000,"currency":"USD"},"gross_sales_money":{"amount":2000,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":2000,"currency":"USD"},"variation_total_price_money":{"amount":2000,"currency":"USD"},"item_type":"ITEM"}],"fulfillments":[{"uid":"BRNzQky2r6X75pHawDNzn","type":"PICKUP","state":"COMPLETED","pickup_details":{"expires_at":"2021-07-01T20:21:54.859Z","pickup_at":"2021-07-01T19:21:54.859Z","note":"Pour over coffee","placed_at":"2021-06-29T21:36:58.368Z","accepted_at":"2021-06-29T21:47:21.276Z","ready_at":"2021-06-29T21:47:21.276Z","schedule_type":"SCHEDULED","recipient":{"display_name":"Jaiden Urie"},"auto_complete_duration":"P0DT1H0S","picked_up_at":"2021-06-29T21:47:21.276Z"}}],"created_at":"2021-06-29T21:03:26.397Z","updated_at":"2021-06-29T21:47:21.278Z","state":"COMPLETED","version":6,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":2000,"currency":"USD"},"closed_at":"2021-06-29T21:47:21.278Z","tenders":[{"id":"bbJlGSvPeyGs94AFRcEABtRly9GZY","location_id":"L9A5Y0JR014G1","transaction_id":"j6IHHAKeyMaX9O75dd53KvxP8h4F","created_at":"2021-06-29T21:36:58Z","amount_money":{"amount":2000,"currency":"USD"},"type":"CARD","card_details":{"status":"CAPTURED","card":{"card_brand":"MASTERCARD","last_4":"9029","fingerprint":"sq-1-MTQOLCjEOIzHvJvKX4yxf6qBvj6DAFuB8wlWoKW4NI1BAFV5cdlJmge8ehPFGUSeuw"},"entry_method":"KEYED"},"payment_id":"bbJlGSvPeyGs94AFRcEABtRly9GZY"}],"total_service_charge_money":{"amount":0,"currency":"USD"},"net_amounts":{"total_money":{"amount":2000,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-7KVC6qHcSDMXsm40SAA9TA"}},"emitted_at":1668290127539} +{"stream":"orders","data":{"id":"BFkIiV4W7baTDDx2CGGhdEzvTOCZY","location_id":"LH2XR7AMG39HX","created_at":"2021-06-22T19:35:20.543Z","updated_at":"2021-06-22T19:35:23.000Z","state":"COMPLETED","version":4,"closed_at":"2021-06-22T19:35:20.686Z","returns":[{"uid":"WcFkVyMwOssfV9VtQ2rGBD","source_order_id":"BxCc4Y2KBt10BUWQheazcgRUR7bZY","return_line_items":[{"uid":"dKQaEjk7OjonHwAvWErZ7B","quantity":"1","item_type":"CUSTOM_AMOUNT","base_price_money":{"amount":500,"currency":"USD"},"variation_total_price_money":{"amount":500,"currency":"USD"},"gross_return_money":{"amount":500,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":500,"currency":"USD"}}]}],"return_amounts":{"total_money":{"amount":500,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"refunds":[{"id":"BH7uyAXe6SqRc99uEExljMwERWZPci10Og6zIyfynAB","location_id":"LH2XR7AMG39HX","transaction_id":"BxCc4Y2KBt10BUWQheazcgRUR7bZY","tender_id":"NWO7kC96bJDUNKLovcUnapxGeOWZY","created_at":"2021-06-22T19:35:20Z","reason":"Overpayment","amount_money":{"amount":500,"currency":"USD"},"status":"APPROVED"}],"source":{}},"emitted_at":1668290127539} +{"stream":"orders","data":{"id":"JjntZYneuJbekziwk0jY6p1yXd4F","location_id":"L9A5Y0JR014G1","line_items":[{"uid":"B5EkT40P79OAqaeCh9URl","catalog_object_id":"YLB2HNUIJGS4ZXXSILPXIKLV","catalog_version":1624046773184,"quantity":"1","name":"Hundred","variation_name":"Computer","base_price_money":{"amount":23200,"currency":"USD"},"gross_sales_money":{"amount":23200,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":23200,"currency":"USD"},"variation_total_price_money":{"amount":23200,"currency":"USD"},"item_type":"ITEM"}],"fulfillments":[{"uid":"U6fbu4BN8Yquv80FurUFzD","type":"SHIPMENT","state":"COMPLETED","shipment_details":{"recipient":{"display_name":"Recipient_name","phone_number":"9009099090","address":{"address_line_1":"address","locality":"city","administrative_district_level_1":"state","postal_code":"12345"}},"carrier":"DHL","tracking_number":"1234567890","placed_at":"2021-06-29T21:39:52.977Z","packaged_at":"2021-06-29T21:47:32.534Z","shipped_at":"2021-06-29T21:47:32.534Z","expected_shipped_at":"2021-06-18T22:30:00.000Z","in_progress_at":"2021-06-29T21:47:32.534Z"}}],"created_at":"2021-06-18T20:15:20.697Z","updated_at":"2021-06-29T21:47:32.538Z","state":"COMPLETED","version":9,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":23400,"currency":"USD"},"closed_at":"2021-06-29T21:47:32.538Z","tenders":[{"id":"lC8esVtmjPkd2Y6g1oBTv3MM3OVZY","location_id":"L9A5Y0JR014G1","transaction_id":"JjntZYneuJbekziwk0jY6p1yXd4F","created_at":"2021-06-29T21:39:52Z","amount_money":{"amount":23400,"currency":"USD"},"type":"CARD","card_details":{"status":"CAPTURED","card":{"card_brand":"AMERICAN_EXPRESS","last_4":"6550","fingerprint":"sq-1-pRwxNMfOEIpFKaJRufIDjllM0JcA8dm8F2XkyJuq1wV4RyT18oupi6b-5znqaNSHPg"},"entry_method":"KEYED"},"payment_id":"lC8esVtmjPkd2Y6g1oBTv3MM3OVZY"}],"service_charges":[{"uid":"SBq6ilnkaDRn9bg5TZeSmD","name":"delivery fee","amount_money":{"amount":200,"currency":"USD"},"applied_money":{"amount":200,"currency":"USD"},"calculation_phase":"SUBTOTAL_PHASE","taxable":true,"total_money":{"amount":200,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"type":"CUSTOM"}],"total_service_charge_money":{"amount":200,"currency":"USD"},"net_amounts":{"total_money":{"amount":23400,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":200,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-7KVC6qHcSDMXsm40SAA9TA"}},"emitted_at":1668290127539} +{"stream":"orders","data":{"id":"ncghspMyKtVDQ5986oo2Pi3udc4F","location_id":"L9A5Y0JR014G1","line_items":[{"uid":"VCLq1adeu7WPNPGdjUAX7C","catalog_object_id":"2B6IR25IUOTR4RQFQ6TRAJCQ","catalog_version":1624046773184,"quantity":"1","name":"Pressure","variation_name":"","base_price_money":{"amount":5100,"currency":"USD"},"gross_sales_money":{"amount":5100,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":5100,"currency":"USD"},"variation_total_price_money":{"amount":5100,"currency":"USD"},"item_type":"ITEM"}],"fulfillments":[{"uid":"1jC40dfrQ3ZiciJ3zNPK8","type":"SHIPMENT","state":"PROPOSED","shipment_details":{"recipient":{"display_name":"Recipient_name","phone_number":"9009099090","address":{"address_line_1":"address","locality":"city","administrative_district_level_1":"state","postal_code":"12345"}},"expected_shipped_at":"2021-06-18T22:30:00.000Z"}}],"created_at":"2021-06-18T20:12:59.691Z","updated_at":"2021-06-18T20:13:15.515Z","state":"OPEN","version":2,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":5300,"currency":"USD"},"service_charges":[{"uid":"B9z576NbApufOUdtz49i6","name":"delivery fee","amount_money":{"amount":200,"currency":"USD"},"applied_money":{"amount":200,"currency":"USD"},"calculation_phase":"SUBTOTAL_PHASE","taxable":true,"total_money":{"amount":200,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"type":"CUSTOM"}],"total_service_charge_money":{"amount":200,"currency":"USD"},"net_amounts":{"total_money":{"amount":5300,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":200,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-7KVC6qHcSDMXsm40SAA9TA"}},"emitted_at":1668290127540} +{"stream":"orders","data":{"id":"veBIhqsgxlTpEowLlKMMvA690h4F","location_id":"L9A5Y0JR014G1","line_items":[{"uid":"jEg4BmOl89ljtlhFwo8S0D","catalog_object_id":"PGOQKJWR6ALTCFPVGV54LHA6","catalog_version":1624046773184,"quantity":"1","name":"Tea","variation_name":"Regular","base_price_money":{"amount":500,"currency":"USD"},"gross_sales_money":{"amount":500,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":500,"currency":"USD"},"variation_total_price_money":{"amount":500,"currency":"USD"},"item_type":"ITEM"}],"fulfillments":[{"uid":"iQ0FbYjCqbuhPohEhf7JIC","type":"SHIPMENT","state":"PROPOSED","shipment_details":{"recipient":{"display_name":"Recipient_name","phone_number":"+19009099090","address":{"address_line_1":"address","locality":"city","administrative_district_level_1":"state","postal_code":"12345"}},"expected_shipped_at":"2021-06-18T22:30:00.000Z"}}],"created_at":"2021-06-18T20:10:17.806Z","updated_at":"2021-06-18T20:11:04.512Z","state":"OPEN","version":2,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":700,"currency":"USD"},"service_charges":[{"uid":"TejncjANe0eoAfU5Qs3zGC","name":"delivery fee","amount_money":{"amount":200,"currency":"USD"},"applied_money":{"amount":200,"currency":"USD"},"calculation_phase":"SUBTOTAL_PHASE","taxable":true,"total_money":{"amount":200,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"type":"CUSTOM"}],"total_service_charge_money":{"amount":200,"currency":"USD"},"net_amounts":{"total_money":{"amount":700,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":200,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-7KVC6qHcSDMXsm40SAA9TA"}},"emitted_at":1668290127541} +{"stream":"orders","data":{"id":"RPNSX4B88KKWSmpLsiHNcSIbhd4F","location_id":"L9A5Y0JR014G1","line_items":[{"uid":"sieY1IhwoJ2BiTrHRhDkG","catalog_object_id":"DT52FVGPUEJ7KL5WYPIK5TTP","catalog_version":1623781508092,"quantity":"1","name":"Coffee","variation_name":"Black","base_price_money":{"amount":900,"currency":"USD"},"gross_sales_money":{"amount":900,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":90,"currency":"USD"},"total_money":{"amount":810,"currency":"USD"},"variation_total_price_money":{"amount":900,"currency":"USD"},"applied_discounts":[{"uid":"sbE0N9oflwgElB27VrpxmB","discount_uid":"pN6ce7xnqIuCkpqPfbHl6C","applied_money":{"amount":90,"currency":"USD"}}],"item_type":"ITEM"}],"discounts":[{"uid":"pN6ce7xnqIuCkpqPfbHl6C","name":"Curbside Pickup Promotion","percentage":"10","applied_money":{"amount":90,"currency":"USD"},"type":"FIXED_PERCENTAGE","scope":"ORDER"}],"fulfillments":[{"uid":"vAaydzNK9ZsQhZbU8yq2IB","type":"PICKUP","state":"PROPOSED","pickup_details":{"pickup_at":"2021-06-18T22:30:00.000Z","recipient":{"display_name":"pickup_name","phone_number":"+19009099090"}}}],"created_at":"2021-06-18T20:02:22.143Z","updated_at":"2021-06-18T20:03:30.100Z","state":"OPEN","version":2,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":90,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":810,"currency":"USD"},"total_service_charge_money":{"amount":0,"currency":"USD"},"net_amounts":{"total_money":{"amount":810,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":90,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-7KVC6qHcSDMXsm40SAA9TA"}},"emitted_at":1668290127541} +{"stream":"orders","data":{"id":"NpZRjYMGKOKeTe0BTp7N5r8kM0LZY","location_id":"LH2XR7AMG39HX","created_at":"2021-06-18T13:37:33.422Z","updated_at":"2021-06-18T13:37:37.000Z","state":"COMPLETED","version":4,"closed_at":"2021-06-18T13:37:34.544Z","returns":[{"uid":"utVo8VtdQxlKZdVh1n6jaD","source_order_id":"BxCc4Y2KBt10BUWQheazcgRUR7bZY","return_line_items":[{"uid":"Ck0UkAjcVHe6guD1HNWub","quantity":"1","item_type":"CUSTOM_AMOUNT","base_price_money":{"amount":1485,"currency":"USD"},"variation_total_price_money":{"amount":1485,"currency":"USD"},"gross_return_money":{"amount":1485,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":1485,"currency":"USD"}}]}],"return_amounts":{"total_money":{"amount":1485,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"refunds":[{"id":"0um3GHK0AHt273xEe6I3u1y96Lnm018b0WAtyyOYRrP","location_id":"LH2XR7AMG39HX","transaction_id":"BxCc4Y2KBt10BUWQheazcgRUR7bZY","tender_id":"NWO7kC96bJDUNKLovcUnapxGeOWZY","created_at":"2021-06-18T13:37:33Z","reason":"Broken item","amount_money":{"amount":1485,"currency":"USD"},"status":"APPROVED"}],"source":{}},"emitted_at":1668290127543} +{"stream":"orders","data":{"id":"BxCc4Y2KBt10BUWQheazcgRUR7bZY","location_id":"LH2XR7AMG39HX","line_items":[{"uid":"4ffd68dd-ba56-4c4f-c5f6-a9cff014183e","catalog_object_id":"TLL2QDA3U5P7AAA2A4SGK52S","catalog_version":1623781508092,"quantity":"1","name":"Able bit","variation_name":"Analysis","base_price_money":{"amount":9900,"currency":"USD"},"gross_sales_money":{"amount":9900,"currency":"USD"},"total_tax_money":{"amount":1485,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":11385,"currency":"USD"},"variation_total_price_money":{"amount":9900,"currency":"USD"},"applied_taxes":[{"uid":"ce8eee9c-a03c-da96-b84b-c7dc5ddc6c0f","tax_uid":"894b8da4-44f0-2f8d-b376-de0e2b0f7220","applied_money":{"amount":1485,"currency":"USD"}}],"item_type":"ITEM"}],"taxes":[{"uid":"894b8da4-44f0-2f8d-b376-de0e2b0f7220","catalog_object_id":"5X7QCTRTQ7MEUFFWF2ESR3IA","catalog_version":1623781508092,"name":"15_p","percentage":"15.0","type":"ADDITIVE","applied_money":{"amount":1485,"currency":"USD"},"scope":"LINE_ITEM"}],"created_at":"2021-06-18T13:31:42.611Z","updated_at":"2021-06-22T19:35:25.230Z","state":"COMPLETED","version":13,"total_tax_money":{"amount":1485,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":11385,"currency":"USD"},"closed_at":"2021-06-18T13:31:43.267Z","tenders":[{"id":"NWO7kC96bJDUNKLovcUnapxGeOWZY","location_id":"LH2XR7AMG39HX","transaction_id":"BxCc4Y2KBt10BUWQheazcgRUR7bZY","created_at":"2021-06-18T13:31:43Z","note":"113,85$ payment","amount_money":{"amount":11385,"currency":"USD"},"type":"CARD","card_details":{"status":"CAPTURED","card":{"card_brand":"VISA","last_4":"1111","fingerprint":"sq-1-mqW9yIk2eKV4LdXhGzf-FYu1knqb1IT7lXybOaFbMwIH2-9d1qdVOGNUMA8TDALoqg"},"entry_method":"KEYED"},"payment_id":"NWO7kC96bJDUNKLovcUnapxGeOWZY"}],"total_service_charge_money":{"amount":0,"currency":"USD"},"net_amounts":{"total_money":{"amount":11385,"currency":"USD"},"tax_money":{"amount":1485,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-4Uw2-7Sy15Umdnct7FTeuQ"}},"emitted_at":1668290127543} +{"stream":"orders","data":{"id":"hD1xqUBBHQ3ejMBQiSSmncrYg7OZY","location_id":"LH2XR7AMG39HX","line_items":[{"uid":"v6KbyuUoPvjZ6hHLVLpvi","quantity":"1","base_price_money":{"amount":2056,"currency":"USD"},"note":"20$ money payment","gross_sales_money":{"amount":2056,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":2056,"currency":"USD"},"variation_total_price_money":{"amount":2056,"currency":"USD"},"item_type":"CUSTOM_AMOUNT"}],"created_at":"2021-06-18T13:30:27.796Z","updated_at":"2021-06-18T13:30:30.000Z","state":"COMPLETED","version":4,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":2056,"currency":"USD"},"closed_at":"2021-06-18T13:30:28.042Z","tenders":[{"id":"rLBl9k8kKVV8uXNymUEct6S2ebIZY","location_id":"LH2XR7AMG39HX","transaction_id":"hD1xqUBBHQ3ejMBQiSSmncrYg7OZY","created_at":"2021-06-18T13:30:27Z","note":"20$ money payment","amount_money":{"amount":2056,"currency":"USD"},"type":"CARD","card_details":{"status":"CAPTURED","card":{"card_brand":"VISA","last_4":"1111","fingerprint":"sq-1-mqW9yIk2eKV4LdXhGzf-FYu1knqb1IT7lXybOaFbMwIH2-9d1qdVOGNUMA8TDALoqg"},"entry_method":"KEYED"},"payment_id":"rLBl9k8kKVV8uXNymUEct6S2ebIZY"}],"total_service_charge_money":{"amount":0,"currency":"USD"},"net_amounts":{"total_money":{"amount":2056,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-4Uw2-7Sy15Umdnct7FTeuQ"}},"emitted_at":1668290127543} +{"stream":"orders","data":{"id":"jqYrf6arFpUo7zElfWu9GRF5lAWZY","location_id":"LH2XR7AMG39HX","line_items":[{"uid":"JYEv3BLPY5FmSaVXDdbESD","quantity":"1","base_price_money":{"amount":100,"currency":"USD"},"gross_sales_money":{"amount":100,"currency":"USD"},"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_money":{"amount":100,"currency":"USD"},"variation_total_price_money":{"amount":100,"currency":"USD"},"item_type":"CUSTOM_AMOUNT"}],"created_at":"2021-06-08T20:21:39.163Z","updated_at":"2021-06-08T20:21:41.000Z","state":"COMPLETED","version":4,"total_tax_money":{"amount":0,"currency":"USD"},"total_discount_money":{"amount":0,"currency":"USD"},"total_tip_money":{"amount":0,"currency":"USD"},"total_money":{"amount":100,"currency":"USD"},"closed_at":"2021-06-08T20:21:39.406Z","tenders":[{"id":"9m4YvEyzLRUvwUeBf2DNtVOh6cIZY","location_id":"LH2XR7AMG39HX","transaction_id":"jqYrf6arFpUo7zElfWu9GRF5lAWZY","created_at":"2021-06-08T20:21:39Z","amount_money":{"amount":100,"currency":"USD"},"type":"CARD","card_details":{"status":"CAPTURED","card":{"card_brand":"MASTERCARD","last_4":"9029","fingerprint":"sq-1-MTQOLCjEOIzHvJvKX4yxf6qBvj6DAFuB8wlWoKW4NI1BAFV5cdlJmge8ehPFGUSeuw"},"entry_method":"KEYED"},"payment_id":"9m4YvEyzLRUvwUeBf2DNtVOh6cIZY"}],"total_service_charge_money":{"amount":0,"currency":"USD"},"net_amounts":{"total_money":{"amount":100,"currency":"USD"},"tax_money":{"amount":0,"currency":"USD"},"discount_money":{"amount":0,"currency":"USD"},"tip_money":{"amount":0,"currency":"USD"},"service_charge_money":{"amount":0,"currency":"USD"}},"source":{"name":"Sandbox for sq0idp-7KVC6qHcSDMXsm40SAA9TA"}},"emitted_at":1668290127544} diff --git a/airbyte-integrations/connectors/source-square/integration_tests/expected_records_oauth.txt b/airbyte-integrations/connectors/source-square/integration_tests/expected_records_oauth.txt new file mode 100644 index 000000000000..438769bb4ac5 --- /dev/null +++ b/airbyte-integrations/connectors/source-square/integration_tests/expected_records_oauth.txt @@ -0,0 +1,19 @@ +{"stream":"items","data":{"type":"ITEM","id":"434XPICM6QLQANT3D6AGUAGF","updated_at":"2022-11-11T16:31:38.305Z","created_at":"2022-11-11T16:30:49.698Z","version":1668184298305,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Product_1","visibility":"PRIVATE","category_id":"VPLTXF72NLBWUTGG3R76UVXD","tax_ids":["KL5UUZVGD7Y4WJYMJUHWRMQG"],"variations":[{"type":"ITEM_VARIATION","id":"ZU3W5CQMCTESLCQOBRXXBOIZ","updated_at":"2022-11-11T16:31:38.305Z","created_at":"2022-11-11T16:30:49.698Z","version":1668184298305,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"434XPICM6QLQANT3D6AGUAGF","name":"Regular","sku":"test_prod_1","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":1000,"currency":"USD"},"track_inventory":false}}],"product_type":"REGULAR","skip_modifier_screen":false}},"emitted_at":1668191175784} +{"stream":"items","data":{"type":"ITEM","id":"DXLYQ7LFLFM4JGO2CS427GUO","updated_at":"2022-11-11T16:31:29.338Z","created_at":"2022-11-11T16:31:29.338Z","version":1668184289338,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Product_2","description":"simple description","visibility":"PRIVATE","category_id":"F7UWXGUH5MZZ737SE2OJF4YC","tax_ids":["KL5UUZVGD7Y4WJYMJUHWRMQG"],"variations":[{"type":"ITEM_VARIATION","id":"TDMFLDS4DDXZDSN3USO6R3OT","updated_at":"2022-11-11T16:31:29.338Z","created_at":"2022-11-11T16:31:29.338Z","version":1668184289338,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"DXLYQ7LFLFM4JGO2CS427GUO","name":"Regular","sku":"test_prod_2","ordinal":1,"pricing_type":"FIXED_PRICING","price_money":{"amount":2000,"currency":"USD"},"track_inventory":false}}],"product_type":"REGULAR","skip_modifier_screen":false}},"emitted_at":1668191175785} +{"stream":"items","data":{"type":"ITEM","id":"BMHTD2SV4AE2JB3D5WIFE4FV","updated_at":"2022-11-11T16:33:56.341Z","created_at":"2022-11-11T16:33:56.341Z","version":1668184436341,"is_deleted":false,"present_at_all_locations":true,"item_data":{"name":"Product 3","description":"example description","visibility":"PRIVATE","category_id":"HBD5GWCOP5U2S5YY5KJCAZKL","tax_ids":["KL5UUZVGD7Y4WJYMJUHWRMQG"],"variations":[{"type":"ITEM_VARIATION","id":"HL24W6ZWOTLNBHA5NNPLAC67","updated_at":"2022-11-11T16:33:56.341Z","created_at":"2022-11-11T16:33:56.341Z","version":1668184436341,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"BMHTD2SV4AE2JB3D5WIFE4FV","name":"blue","sku":"test_prod_3","ordinal":0,"pricing_type":"FIXED_PRICING","price_money":{"amount":3000,"currency":"USD"},"track_inventory":false,"item_option_values":[{"item_option_id":"LFP67NW6A4BOJXGPNPL44V75","item_option_value_id":"QLVPI6DSHICEAJ4IKIRYKQV7"}]}},{"type":"ITEM_VARIATION","id":"EMRLAGK7GUIGK6FCRHK4IL4V","updated_at":"2022-11-11T16:33:56.341Z","created_at":"2022-11-11T16:33:56.341Z","version":1668184436341,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"BMHTD2SV4AE2JB3D5WIFE4FV","name":"black","ordinal":1,"pricing_type":"VARIABLE_PRICING","track_inventory":false,"item_option_values":[{"item_option_id":"LFP67NW6A4BOJXGPNPL44V75","item_option_value_id":"LQXW52ZSSYMHIEUE64KJGMOE"}]}},{"type":"ITEM_VARIATION","id":"5RKTRNG55IGWLW5IG52RFF6S","updated_at":"2022-11-11T16:33:56.341Z","created_at":"2022-11-11T16:33:56.341Z","version":1668184436341,"is_deleted":false,"present_at_all_locations":true,"item_variation_data":{"item_id":"BMHTD2SV4AE2JB3D5WIFE4FV","name":"white","ordinal":2,"pricing_type":"VARIABLE_PRICING","track_inventory":false,"item_option_values":[{"item_option_id":"LFP67NW6A4BOJXGPNPL44V75","item_option_value_id":"QA6WRDULEFY7SYB5FMAVYX55"}]}}],"product_type":"REGULAR","skip_modifier_screen":false,"item_options":[{"item_option_id":"LFP67NW6A4BOJXGPNPL44V75"}]}},"emitted_at":1668191175785} +{"stream":"categories","data":{"type":"CATEGORY","id":"VPLTXF72NLBWUTGG3R76UVXD","updated_at":"2022-11-11T15:48:23.152Z","created_at":"2022-11-11T15:48:23.152Z","version":1668181703152,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Category_1","is_top_level":true}},"emitted_at":1668191177253} +{"stream":"categories","data":{"type":"CATEGORY","id":"F7UWXGUH5MZZ737SE2OJF4YC","updated_at":"2022-11-11T15:48:28.249Z","created_at":"2022-11-11T15:48:28.249Z","version":1668181708249,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Category_2","is_top_level":true}},"emitted_at":1668191177254} +{"stream":"categories","data":{"type":"CATEGORY","id":"HBD5GWCOP5U2S5YY5KJCAZKL","updated_at":"2022-11-11T15:48:34.327Z","created_at":"2022-11-11T15:48:34.327Z","version":1668181714327,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Category_3","is_top_level":true}},"emitted_at":1668191177254} +{"stream":"categories","data":{"type":"CATEGORY","id":"JQBNDIPUJVXQDJIWNATGRUX4","updated_at":"2022-11-11T15:48:41.182Z","created_at":"2022-11-11T15:48:41.182Z","version":1668181721182,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Category_4","is_top_level":true}},"emitted_at":1668191177255} +{"stream":"categories","data":{"type":"CATEGORY","id":"45D42VRNFYI55THLHH6VUB44","updated_at":"2022-11-11T15:48:48.605Z","created_at":"2022-11-11T15:48:48.605Z","version":1668181728605,"is_deleted":false,"present_at_all_locations":true,"category_data":{"name":"Category_5","is_top_level":true}},"emitted_at":1668191177255} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"LJPPYOHCPS5HJWKMJUYTSLMH","updated_at":"2022-11-11T15:51:51.16Z","created_at":"2022-11-11T15:51:51.16Z","version":1668181911160,"is_deleted":false,"present_at_all_locations":true,"discount_data":{"name":"50%","discount_type":"FIXED_PERCENTAGE","percentage":"50.0","application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS"}},"emitted_at":1668191178700} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"NZT5AMD3VOXHN6BLMBQIDEKY","updated_at":"2022-11-11T15:52:05.682Z","created_at":"2022-11-11T15:52:05.682Z","version":1668181925682,"is_deleted":false,"present_at_all_locations":true,"discount_data":{"name":"25%","discount_type":"FIXED_PERCENTAGE","percentage":"25.0","application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS"}},"emitted_at":1668191178701} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"JQYAZZVFBKAARXVLFSSLFBUY","updated_at":"2022-11-11T15:52:34.021Z","created_at":"2022-11-11T15:52:34.021Z","version":1668181954021,"is_deleted":false,"present_at_all_locations":true,"discount_data":{"name":"75%","discount_type":"FIXED_PERCENTAGE","percentage":"75.0","application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS","maximum_amount_money":{"amount":70000,"currency":"USD"}}},"emitted_at":1668191178701} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"NBNHZAECIW7LIXM34Z4UFODH","updated_at":"2022-11-11T15:52:43.903Z","created_at":"2022-11-11T15:52:43.903Z","version":1668181963903,"is_deleted":false,"present_at_all_locations":true,"discount_data":{"name":"$10.00","discount_type":"FIXED_AMOUNT","amount_money":{"amount":1000,"currency":"USD"},"application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS"}},"emitted_at":1668191178702} +{"stream":"discounts","data":{"type":"DISCOUNT","id":"F3HLUHHAVJ7ILMKLLHBGJZR7","updated_at":"2022-11-11T15:52:56.188Z","created_at":"2022-11-11T15:52:56.188Z","version":1668181976188,"is_deleted":false,"present_at_all_locations":true,"discount_data":{"name":"$20","discount_type":"FIXED_AMOUNT","amount_money":{"amount":2000,"currency":"USD"},"application_method":"MANUALLY_APPLIED","modify_tax_basis":"MODIFY_TAX_BASIS"}},"emitted_at":1668191178702} +{"stream":"taxes","data":{"type":"TAX","id":"KL5UUZVGD7Y4WJYMJUHWRMQG","updated_at":"2022-11-11T15:53:22.62Z","created_at":"2022-11-11T15:53:22.62Z","version":1668182002620,"is_deleted":false,"present_at_all_locations":true,"tax_data":{"name":"Sales Tax","calculation_phase":"TAX_SUBTOTAL_PHASE","inclusion_type":"ADDITIVE","percentage":"6.0","applies_to_custom_amounts":true,"enabled":true,"tax_type_id":"us_sales_tax","tax_type_name":"Sales Tax","applies_to_product_set_id":"CJ3QM75PNEPAQ4VGRHC4EFPW"}},"emitted_at":1668191180075} +{"stream":"locations","data":{"id":"LQVDPHVPQBX5Z","name":"My Business","timezone":"America/Los_Angeles","capabilities":["AUTOMATIC_TRANSFERS"],"status":"ACTIVE","created_at":"2021-04-30T05:16:02.208Z","merchant_id":"ML2PMZQ5M0JR0","country":"US","language_code":"en-US","currency":"USD","business_name":"My Business","type":"PHYSICAL","business_hours":{},"mcc":"7299"},"emitted_at":1668191181423} +{"stream":"team_members","data":{"id":"TMdUx34E-kYrO_L7","is_owner":true,"status":"ACTIVE","given_name":"","family_name":"","email_address":"integration-test@airbyte.io","created_at":"2021-04-30T05:16:02Z","updated_at":"2021-04-30T05:16:02Z","assigned_locations":{"assignment_type":"ALL_CURRENT_AND_FUTURE_LOCATIONS"}},"emitted_at":1668191182886} +{"stream":"team_member_wages","data":{"id":"eQVAdXuNjmHJigDGZQMzxEf4","team_member_id":"TMdUx34E-kYrO_L7","title":"Owner"},"emitted_at":1668191184362} +{"stream":"customers","data":{"id":"267ZM54NWZ60DTPZ5EKE1C5YHW","created_at":"2022-11-11T16:44:25.675Z","updated_at":"2022-11-11T16:44:25Z","given_name":"integration","family_name":"tests","email_address":"integration-test@airbyte.io","address":{"address_line_1":"2261 MARKET STREET","address_line_2":"SUITE 4381","locality":"SAN FRANCISCO","administrative_district_level_1":"CA","postal_code":"94114"},"preferences":{"email_unsubscribed":false},"creation_source":"DIRECTORY","birthday":"1970-01-01T00:00:00-00:00","segment_ids":["ML2PMZQ5M0JR0.REACHABLE","gv2:K9E6NSJ78N5Z1DEXPKQKMQKAAW"],"version":0},"emitted_at":1668191189952} +{"stream":"modifier_list","data":{"type":"MODIFIER_LIST","id":"IQVWOIVQOUM7EBUBCELJDXYN","updated_at":"2022-11-11T16:40:38.897Z","created_at":"2022-11-11T16:40:38.897Z","version":1668184838897,"is_deleted":false,"present_at_all_locations":true,"modifier_list_data":{"name":"modifier_1","selection_type":"SINGLE","modifiers":[{"type":"MODIFIER","id":"O3GDEULEWXFQE5XW6DY7ZIXX","updated_at":"2022-11-11T16:40:38.897Z","created_at":"2022-11-11T16:40:38.897Z","version":1668184838897,"is_deleted":false,"present_at_all_locations":true,"modifier_data":{"name":"sample","price_money":{"amount":1000,"currency":"USD"},"on_by_default":true,"ordinal":1,"modifier_list_id":"IQVWOIVQOUM7EBUBCELJDXYN"}}]}},"emitted_at":1668191191386} diff --git a/airbyte-integrations/connectors/source-square/setup.py b/airbyte-integrations/connectors/source-square/setup.py index afe53ee1b427..c30071fe22d8 100644 --- a/airbyte-integrations/connectors/source-square/setup.py +++ b/airbyte-integrations/connectors/source-square/setup.py @@ -10,7 +10,9 @@ ] TEST_REQUIREMENTS = [ + "freezegun", "pytest~=6.1", + "pytest-mock~=3.6.1", "source-acceptance-test", ] @@ -21,7 +23,7 @@ author_email="contact@airbyte.io", packages=find_packages(), install_requires=MAIN_REQUIREMENTS, - package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]}, + package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]}, extras_require={ "tests": TEST_REQUIREMENTS, }, diff --git a/airbyte-integrations/connectors/source-square/source_square/__init__.py b/airbyte-integrations/connectors/source-square/source_square/__init__.py index 2876bb61117e..f7064e9203df 100644 --- a/airbyte-integrations/connectors/source-square/source_square/__init__.py +++ b/airbyte-integrations/connectors/source-square/source_square/__init__.py @@ -1,26 +1,7 @@ -""" -MIT License +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# -Copyright (c) 2020 Airbyte - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -""" from .source import SourceSquare diff --git a/airbyte-integrations/connectors/source-square/source_square/components.py b/airbyte-integrations/connectors/source-square/source_square/components.py new file mode 100644 index 000000000000..dd575aa03fed --- /dev/null +++ b/airbyte-integrations/connectors/source-square/source_square/components.py @@ -0,0 +1,79 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import logging +from dataclasses import dataclass +from typing import Any, Iterable, Mapping, Optional + +from airbyte_cdk.models import SyncMode +from airbyte_cdk.sources.declarative.auth import DeclarativeOauth2Authenticator +from airbyte_cdk.sources.declarative.auth.declarative_authenticator import DeclarativeAuthenticator +from airbyte_cdk.sources.declarative.auth.token import BearerAuthenticator +from airbyte_cdk.sources.declarative.stream_slicers import DatetimeStreamSlicer +from airbyte_cdk.sources.declarative.types import StreamSlice, StreamState +from airbyte_cdk.sources.streams.core import Stream +from dataclasses_jsonschema import JsonSchemaMixin + + +@dataclass +class AuthenticatorSquare(DeclarativeAuthenticator, JsonSchemaMixin): + config: Mapping[str, Any] + bearer: BearerAuthenticator + oauth: DeclarativeOauth2Authenticator + + def __new__(cls, bearer, oauth, config, *args, **kwargs): + if config.get("api_key"): + return bearer + else: + return oauth + + +@dataclass +class SquareSubstreamSlicer(DatetimeStreamSlicer): + parent_stream: Stream = None + parent_key: str = None + parent_records_per_request: int = 10 + + @property + def logger(self): + return logging.getLogger(f"airbyte.streams.{self.parent_stream.name}") + + def get_request_body_json( + self, + *, + stream_state: Optional[StreamState] = {}, + stream_slice: Optional[StreamSlice] = None, + next_page_token: Optional[Mapping[str, Any]] = None, + ) -> Optional[Mapping]: + json_payload = {"cursor": next_page_token["cursor"]} if next_page_token else {} + if stream_slice: + json_payload.update(stream_slice) + initial_start_time = self._format_datetime(self.start_datetime.get_datetime(self.config, stream_state={})) + json_payload["query"] = { + "filter": { + "date_time_filter": { + "updated_at": { + "start_at": stream_state.get(self.cursor_field.eval(self.config), initial_start_time), + } + } + }, + "sort": {"sort_field": "UPDATED_AT", "sort_order": "ASC"}, + } + return json_payload + + def stream_slices(self, sync_mode: SyncMode, stream_state: StreamState, *args, **kwargs) -> Iterable[StreamSlice]: + locations_records = self.parent_stream.read_records(sync_mode=SyncMode.full_refresh) + location_ids = [location[self.parent_key] for location in locations_records] + + if not location_ids: + self.logger.error( + "No locations found. Orders cannot be extracted without locations. " + "Check https://developer.squareup.com/explorer/square/locations-api/list-locations" + ) + yield from [] + separated_locations = [ + location_ids[i : i + self.parent_records_per_request] for i in range(0, len(location_ids), self.parent_records_per_request) + ] + for location in separated_locations: + yield {"location_ids": location} diff --git a/airbyte-integrations/connectors/source-square/source_square/schemas/TODO.md b/airbyte-integrations/connectors/source-square/source_square/schemas/TODO.md index cf1efadb3c9c..327ddcb26446 100644 --- a/airbyte-integrations/connectors/source-square/source_square/schemas/TODO.md +++ b/airbyte-integrations/connectors/source-square/source_square/schemas/TODO.md @@ -1,25 +1,16 @@ # TODO: Define your stream schemas Your connector must describe the schema of each stream it can output using [JSONSchema](https://json-schema.org). -The simplest way to do this is to describe the schema of your streams using one `.json` file per stream. You can also dynamically generate the schema of your stream in code, or you can combine both approaches: start with a `.json` file and dynamically add properties to it. - -The schema of a stream is the return value of `Stream.get_json_schema`. +You can describe the schema of your streams using one `.json` file per stream. ## Static schemas -By default, `Stream.get_json_schema` reads a `.json` file in the `schemas/` directory whose name is equal to the value of the `Stream.name` property. In turn `Stream.name` by default returns the name of the class in snake case. Therefore, if you have a class `class EmployeeBenefits(HttpStream)` the default behavior will look for a file called `schemas/employee_benefits.json`. You can override any of these behaviors as you need. - -Important note: any objects referenced via `$ref` should be placed in the `shared/` directory in their own `.json` files. - -## Dynamic schemas -If you'd rather define your schema in code, override `Stream.get_json_schema` in your stream class to return a `dict` describing the schema using [JSONSchema](https://json-schema.org). - -## Dynamically modifying static schemas -Override `Stream.get_json_schema` to run the default behavior, edit the returned value, then return the edited value: +From the `square.yaml` configuration file, you read the `.json` files in the `schemas/` directory. You can refer to a schema in your configuration file using the `schema_loader` component's `file_path` field. For example: ``` -def get_json_schema(self): - schema = super().get_json_schema() - schema['dynamically_determined_property'] = "property" - return schema +schema_loader: + type: JsonSchema + file_path: "./source_square/schemas/customers.json" ``` +Every stream specified in the configuration file should have a corresponding `.json` schema file. + +Delete this file once you're done. Or don't. Up to you :) -Delete this file once you're done. Or don't. Up to you :) diff --git a/airbyte-integrations/connectors/source-square/source_square/source.py b/airbyte-integrations/connectors/source-square/source_square/source.py index bad8d793dab0..cc56fede7b7d 100644 --- a/airbyte-integrations/connectors/source-square/source_square/source.py +++ b/airbyte-integrations/connectors/source-square/source_square/source.py @@ -2,476 +2,17 @@ # Copyright (c) 2022 Airbyte, Inc., all rights reserved. # -import json -from abc import ABC, abstractmethod -from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Tuple, Union +from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource -import pendulum -import requests -from airbyte_cdk.logger import AirbyteLogger -from airbyte_cdk.models import SyncMode -from airbyte_cdk.sources import AbstractSource -from airbyte_cdk.sources.streams import Stream -from airbyte_cdk.sources.streams.http import HttpStream -from airbyte_cdk.sources.streams.http.auth.core import HttpAuthenticator -from airbyte_cdk.sources.streams.http.requests_native_auth import Oauth2Authenticator, TokenAuthenticator -from requests.auth import AuthBase -from source_square.utils import separate_items_by_count +""" +This file provides the necessary constructs to interpret a provided declarative YAML configuration file into +source connector. +WARNING: Do not modify this file. +""" -class SquareException(Exception): - """Just for formatting the exception as Square""" - def __init__(self, status_code, errors): - self.status_code = status_code - self.errors = errors - - def __str__(self): - return f"Code: {self.status_code}, Detail: {self.errors}" - - -def parse_square_error_response(error: requests.exceptions.HTTPError) -> SquareException: - if error.response.content: - content = json.loads(error.response.content.decode()) - if content and "errors" in content: - return SquareException(error.response.status_code, content["errors"]) - - -class SquareStream(HttpStream, ABC): - def __init__( - self, - is_sandbox: bool, - api_version: str, - start_date: str, - include_deleted_objects: bool, - authenticator: Union[AuthBase, HttpAuthenticator], - ): - super().__init__(authenticator) - self._authenticator = authenticator - self.is_sandbox = is_sandbox - self.api_version = api_version - # Converting users ISO 8601 format (YYYY-MM-DD) to RFC 3339 (2021-06-14T13:47:56.799Z) - # Because this standard is used by square in 'updated_at' records field - self.start_date = pendulum.parse(start_date).to_rfc3339_string() - self.include_deleted_objects = include_deleted_objects - - data_field = None - primary_key = "id" - items_per_page_limit = 100 - - @property - def url_base(self) -> str: - return "https://connect.squareup{}.com/v2/".format("sandbox" if self.is_sandbox else "") - - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: - next_page_cursor = response.json().get("cursor", False) - if next_page_cursor: - return {"cursor": next_page_cursor} - - def request_headers( - self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None - ) -> Mapping[str, Any]: - return {"Square-Version": self.api_version, "Content-Type": "application/json"} - - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: - json_response = response.json() - records = json_response.get(self.data_field, []) if self.data_field is not None else json_response - yield from records - - def _send_request(self, request: requests.PreparedRequest, request_kwargs: Mapping[str, Any]) -> requests.Response: - try: - return super()._send_request(request, request_kwargs) - except requests.exceptions.HTTPError as e: - square_exception = parse_square_error_response(e) - if square_exception: - self.logger.error(str(square_exception)) - raise e - - -# Some streams require next_page_token in request query parameters (TeamMemberWages, Customers) -# but others in JSON payload (Items, Discounts, Orders, etc) -# That's why this 2 classes SquareStreamPageParam and SquareStreamPageJson are made -class SquareStreamPageParam(SquareStream, ABC): - def request_params( - self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None - ) -> MutableMapping[str, Any]: - return {"cursor": next_page_token["cursor"]} if next_page_token else {} - - -class SquareStreamPageJson(SquareStream, ABC): - def request_body_json( - self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None - ) -> Optional[Mapping]: - return {"cursor": next_page_token["cursor"]} if next_page_token else {} - - -class SquareStreamPageJsonAndLimit(SquareStreamPageJson, ABC): - def request_body_json( - self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None - ) -> Optional[Mapping]: - json_payload = {"limit": self.items_per_page_limit} - if next_page_token: - json_payload.update(next_page_token) - - return json_payload - - -class SquareCatalogObjectsStream(SquareStreamPageJson): - data_field = "objects" - http_method = "POST" - items_per_page_limit = 1000 - - def path(self, **kwargs) -> str: - return "catalog/search" - - def request_body_json( - self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None - ) -> Optional[Mapping]: - json_payload = super().request_body_json(stream_state, stream_slice, next_page_token) - - if self.path() == "catalog/search": - json_payload["include_deleted_objects"] = self.include_deleted_objects - json_payload["include_related_objects"] = False - json_payload["limit"] = self.items_per_page_limit - - return json_payload - - -class IncrementalSquareGenericStream(SquareStream, ABC): - def get_updated_state(self, current_stream_state: MutableMapping[str, Any], latest_record: Mapping[str, Any]) -> Mapping[str, Any]: - if current_stream_state is not None and self.cursor_field in current_stream_state: - return {self.cursor_field: max(current_stream_state[self.cursor_field], latest_record[self.cursor_field])} - else: - return {self.cursor_field: self.start_date} - - -class IncrementalSquareCatalogObjectsStream(SquareCatalogObjectsStream, IncrementalSquareGenericStream, ABC): - @property - @abstractmethod - def object_type(self): - """Object type property""" - - state_checkpoint_interval = SquareCatalogObjectsStream.items_per_page_limit - - cursor_field = "updated_at" - - def request_body_json(self, stream_state: Mapping[str, Any], **kwargs) -> Optional[Mapping]: - json_payload = super().request_body_json(stream_state, **kwargs) - - if stream_state: - json_payload["begin_time"] = stream_state[self.cursor_field] - - json_payload["object_types"] = [self.object_type] - return json_payload - - -class IncrementalSquareStream(IncrementalSquareGenericStream, SquareStreamPageParam, ABC): - state_checkpoint_interval = SquareStream.items_per_page_limit - - cursor_field = "created_at" - - def request_params( - self, - stream_state: Mapping[str, Any], - stream_slice: Mapping[str, Any] = None, - next_page_token: Mapping[str, Any] = None, - ) -> MutableMapping[str, Any]: - params_payload = super().request_params(stream_state, stream_slice, next_page_token) - - if stream_state: - params_payload["begin_time"] = stream_state[self.cursor_field] - - params_payload["limit"] = self.items_per_page_limit - - return params_payload - - -class Items(IncrementalSquareCatalogObjectsStream): - """Docs: https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects - with object_types = ITEM""" - - object_type = "ITEM" - - -class Categories(IncrementalSquareCatalogObjectsStream): - """Docs: https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects - with object_types = CATEGORY""" - - object_type = "CATEGORY" - - -class Discounts(IncrementalSquareCatalogObjectsStream): - """Docs: https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects - with object_types = DISCOUNT""" - - object_type = "DISCOUNT" - - -class Taxes(IncrementalSquareCatalogObjectsStream): - """Docs: https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects - with object_types = TAX""" - - object_type = "TAX" - - -class ModifierList(IncrementalSquareCatalogObjectsStream): - """Docs: https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects - with object_types = MODIFIER_LIST""" - - object_type = "MODIFIER_LIST" - - -class Refunds(IncrementalSquareStream): - """Docs: https://developer.squareup.com/reference/square_2021-06-16/refunds-api/list-payment-refunds""" - - data_field = "refunds" - - def path(self, **kwargs) -> str: - return "refunds" - - def request_params(self, **kwargs) -> MutableMapping[str, Any]: - params_payload = super().request_params(**kwargs) - params_payload["sort_order"] = "ASC" - - return params_payload - - -class Payments(IncrementalSquareStream): - """Docs: https://developer.squareup.com/reference/square_2021-06-16/payments-api/list-payments""" - - data_field = "payments" - - def path(self, **kwargs) -> str: - return "payments" - - def request_params(self, **kwargs) -> MutableMapping[str, Any]: - params_payload = super().request_params(**kwargs) - params_payload["sort_order"] = "ASC" - - return params_payload - - -class Locations(SquareStream): - """Docs: https://developer.squareup.com/explorer/square/locations-api/list-locations""" - - data_field = "locations" - - def path(self, **kwargs) -> str: - return "locations" - - -class Shifts(SquareStreamPageJsonAndLimit): - """Docs: https://developer.squareup.com/reference/square/labor-api/search-shifts""" - - data_field = "shifts" - http_method = "POST" - items_per_page_limit = 200 - - def path(self, **kwargs) -> str: - return "labor/shifts/search" - - -class TeamMembers(SquareStreamPageJsonAndLimit): - """Docs: https://developer.squareup.com/reference/square/team-api/search-team-members""" - - data_field = "team_members" - http_method = "POST" - - def path(self, **kwargs) -> str: - return "team-members/search" - - -class TeamMemberWages(SquareStreamPageParam): - """Docs: https://developer.squareup.com/reference/square_2021-06-16/labor-api/list-team-member-wages""" - - data_field = "team_member_wages" - items_per_page_limit = 200 - - def path(self, **kwargs) -> str: - return "labor/team-member-wages" - - def request_params(self, **kwargs) -> MutableMapping[str, Any]: - params_payload = super().request_params(**kwargs) - params_payload = params_payload or {} - - params_payload["limit"] = self.items_per_page_limit - return params_payload - - # This stream is tricky because once in a while it returns 404 error 'Not Found for url'. - # Thus the retry strategy was implemented. - def should_retry(self, response: requests.Response) -> bool: - return response.status_code == 404 or super().should_retry(response) - - def backoff_time(self, response: requests.Response) -> Optional[float]: - return 3 - - -class Customers(SquareStreamPageParam): - """Docs: https://developer.squareup.com/reference/square_2021-06-16/customers-api/list-customers""" - - data_field = "customers" - - def path(self, **kwargs) -> str: - return "customers" - - def request_params(self, **kwargs) -> MutableMapping[str, Any]: - params_payload = super().request_params(**kwargs) - params_payload = params_payload or {} - - params_payload["sort_order"] = "ASC" - params_payload["sort_field"] = "CREATED_AT" - return params_payload - - -class Orders(SquareStreamPageJson): - """Docs: https://developer.squareup.com/reference/square/orders-api/search-orders""" - - data_field = "orders" - http_method = "POST" - items_per_page_limit = 500 - # There is a restriction in the documentation where only 10 locations can be send at one request - # https://developer.squareup.com/reference/square/orders-api/search-orders#request__property-location_ids - locations_per_requets = 10 - - def path(self, **kwargs) -> str: - return "orders/search" - - def request_body_json(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> Optional[Mapping]: - json_payload = super().request_body_json(stream_slice=stream_slice, **kwargs) - json_payload = json_payload or {} - - if stream_slice: - json_payload.update(stream_slice) - - json_payload["limit"] = self.items_per_page_limit - return json_payload - - def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: - locations_stream = Locations( - authenticator=self.authenticator, - is_sandbox=self.is_sandbox, - api_version=self.api_version, - start_date=self.start_date, - include_deleted_objects=self.include_deleted_objects, - ) - locations_records = locations_stream.read_records(sync_mode=SyncMode.full_refresh) - location_ids = [location["id"] for location in locations_records] - - if not location_ids: - self.logger.error( - "No locations found. Orders cannot be extracted without locations. " - "Check https://developer.squareup.com/explorer/square/locations-api/list-locations" - ) - yield from [] - - separated_locations = separate_items_by_count(location_ids, self.locations_per_requets) - for location in separated_locations: - yield {"location_ids": location} - - -class Oauth2AuthenticatorSquare(Oauth2Authenticator): - def refresh_access_token(self) -> Tuple[str, int]: - """Handle differences in expiration attr: - from API: "expires_at": "2021-11-05T14:26:57Z" - expected: "expires_in": number of seconds - """ - token, expires_at = super().refresh_access_token() - expires_in = pendulum.parse(expires_at) - pendulum.now() - return token, expires_in.seconds - - -class SourceSquare(AbstractSource): - api_version = "2021-09-15" # Latest Stable Release - - @staticmethod - def get_auth(config: Mapping[str, Any]) -> AuthBase: - - credential = config.get("credentials", {}) - auth_type = credential.get("auth_type") - if auth_type == "Oauth": - # scopes needed for all currently supported streams: - scopes = [ - "CUSTOMERS_READ", - "EMPLOYEES_READ", - "ITEMS_READ", - "MERCHANT_PROFILE_READ", - "ORDERS_READ", - "PAYMENTS_READ", - "TIMECARDS_READ", - # OAuth Permissions: - # https://developer.squareup.com/docs/oauth-api/square-permissions - # https://developer.squareup.com/reference/square/enums/OAuthPermission - # "DISPUTES_READ", - # "GIFTCARDS_READ", - # "INVENTORY_READ", - # "INVOICES_READ", - # "TIMECARDS_SETTINGS_READ", - # "LOYALTY_READ", - # "ONLINE_STORE_SITE_READ", - # "ONLINE_STORE_SNIPPETS_READ", - # "SUBSCRIPTIONS_READ", - ] - - auth = Oauth2AuthenticatorSquare( - token_refresh_endpoint="https://connect.squareup.com/oauth2/token", - client_secret=credential.get("client_secret"), - client_id=credential.get("client_id"), - refresh_token=credential.get("refresh_token"), - scopes=scopes, - expires_in_name="expires_at", - ) - elif auth_type == "Apikey": - auth = TokenAuthenticator(token=credential.get("api_key")) - elif not auth_type and config.get("api_key"): - auth = TokenAuthenticator(token=config.get("api_key")) - else: - raise Exception(f"Invalid auth type: {auth_type}") - - return auth - - def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, any]: - - headers = { - "Square-Version": self.api_version, - "Content-Type": "application/json", - } - auth = self.get_auth(config) - headers.update(auth.get_auth_header()) - - url = "https://connect.squareup{}.com/v2/catalog/info".format("sandbox" if config["is_sandbox"] else "") - - try: - session = requests.get(url, headers=headers) - session.raise_for_status() - return True, None - except requests.exceptions.RequestException as e: - square_exception = parse_square_error_response(e) - if square_exception: - return False, square_exception.errors[0]["detail"] - - return False, e - - def streams(self, config: Mapping[str, Any]) -> List[Stream]: - - args = { - "authenticator": self.get_auth(config), - "is_sandbox": config["is_sandbox"], - "api_version": self.api_version, - "start_date": config["start_date"], - "include_deleted_objects": config["include_deleted_objects"], - } - return [ - Items(**args), - Categories(**args), - Discounts(**args), - Taxes(**args), - Locations(**args), - TeamMembers(**args), - TeamMemberWages(**args), - Refunds(**args), - Payments(**args), - Customers(**args), - ModifierList(**args), - Shifts(**args), - Orders(**args), - ] +# Declarative Source +class SourceSquare(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "square.yaml"}) diff --git a/airbyte-integrations/connectors/source-square/source_square/spec.json b/airbyte-integrations/connectors/source-square/source_square/spec.json deleted file mode 100644 index b9874cdbc117..000000000000 --- a/airbyte-integrations/connectors/source-square/source_square/spec.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "documentationUrl": "https://docs.airbyte.com/integrations/sources/square", - "connectionSpecification": { - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "Square Source CDK Specifications", - "type": "object", - "required": ["is_sandbox"], - "additionalProperties": true, - "properties": { - "is_sandbox": { - "type": "boolean", - "description": "Determines whether to use the sandbox or production environment.", - "title": "Sandbox", - "examples": [true, false], - "default": false - }, - "start_date": { - "type": "string", - "description": "UTC date in the format YYYY-MM-DD. Any data before this date will not be replicated. If not set, all data will be replicated.", - "title": "Start Date", - "examples": ["2021-01-01"], - "default": "2021-01-01", - "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" - }, - "include_deleted_objects": { - "type": "boolean", - "description": "In some streams there is an option to include deleted objects (Items, Categories, Discounts, Taxes)", - "title": "Include Deleted Objects", - "examples": [true, false], - "default": false - }, - "credentials": { - "type": "object", - "title": "Credential Type", - "oneOf": [ - { - "title": "Oauth authentication", - "type": "object", - "required": [ - "auth_type", - "client_id", - "client_secret", - "refresh_token" - ], - "properties": { - "auth_type": { - "type": "string", - "const": "Oauth", - "enum": ["Oauth"], - "default": "Oauth", - "order": 0 - }, - "client_id": { - "title": "Client ID", - "type": "string", - "description": "The Square-issued ID of your application", - "airbyte_secret": true - }, - "client_secret": { - "title": "Client Secret", - "type": "string", - "description": "The Square-issued application secret for your application", - "airbyte_secret": true - }, - "refresh_token": { - "title": "Refresh Token", - "type": "string", - "description": "A refresh token generated using the above client ID and secret", - "airbyte_secret": true - } - } - }, - { - "type": "object", - "title": "API Key", - "required": ["auth_type", "api_key"], - "properties": { - "auth_type": { - "type": "string", - "const": "Apikey", - "enum": ["Apikey"], - "default": "Apikey", - "order": 1 - }, - "api_key": { - "title": "API key token", - "type": "string", - "description": "The API key for a Square application", - "airbyte_secret": true - } - } - } - ] - } - } - }, - "authSpecification": { - "auth_type": "oauth2.0", - "oauth2Specification": { - "rootObject": ["credentials", 0], - "oauthFlowInitParameters": [["client_id"], ["client_secret"]], - "oauthFlowOutputParameters": [["refresh_token"]] - } - }, - "advanced_auth": { - "auth_flow_type": "oauth2.0", - "predicate_key": ["credentials", "auth_type"], - "predicate_value": "Oauth", - "oauth_config_specification": { - "complete_oauth_output_specification": { - "type": "object", - "additionalProperties": false, - "properties": { - "refresh_token": { - "type": "string", - "path_in_connector_config": ["credentials", "refresh_token"] - } - } - }, - "complete_oauth_server_input_specification": { - "type": "object", - "additionalProperties": false, - "properties": { - "client_id": { - "type": "string" - }, - "client_secret": { - "type": "string" - } - } - }, - "complete_oauth_server_output_specification": { - "type": "object", - "additionalProperties": false, - "properties": { - "client_id": { - "type": "string", - "path_in_connector_config": ["credentials", "client_id"] - }, - "client_secret": { - "type": "string", - "path_in_connector_config": ["credentials", "client_secret"] - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-square/source_square/spec.yaml b/airbyte-integrations/connectors/source-square/source_square/spec.yaml new file mode 100644 index 000000000000..119fe1ba7da9 --- /dev/null +++ b/airbyte-integrations/connectors/source-square/source_square/spec.yaml @@ -0,0 +1,125 @@ +documentationUrl: https://docs.airbyte.com/integrations/sources/square +connectionSpecification: + $schema: http://json-schema.org/draft-07/schema# + title: Square Spec + type: object + required: + - is_sandbox + additionalProperties: true + properties: + credentials: + title: Authentication + description: Choose how to authenticate to Square. + type: object + order: 0 + oneOf: + - title: Oauth authentication + type: object + required: + - auth_type + - client_id + - client_secret + - refresh_token + properties: + credentials_title: + type: string + const: OAuth Credentials + order: 0 + client_id: + type: string + title: Client ID + description: The Square-issued ID of your application + airbyte_secret: true + client_secret: + type: string + title: Client Secret + description: The Square-issued application secret for your application + airbyte_secret: true + refresh_token: + title: Refresh Token + type: string + description: A refresh token generated using the above client ID and secret + airbyte_secret: true + - title: API key + type: object + required: + - auth_type + - api_key + properties: + credentials_title: + type: string + const: API Key + order: 0 + api_key: + type: string + title: API key token + description: The API key for a Square application + airbyte_secret: true + is_sandbox: + type: boolean + description: Determines whether to use the sandbox or production environment. + title: Sandbox + default: false + order: 1 + start_date: + type: string + description: UTC date in the format YYYY-MM-DD. Any data before this date will not be replicated. If not set, all data will be replicated. + title: Start Date + default: "2021-01-01" + pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}$ + order: 2 + include_deleted_objects: + type: boolean + description: In some streams there is an option to include deleted objects (Items, Categories, Discounts, Taxes) + title: Include Deleted Objects + default: false + order: 3 +authSpecification: + auth_type: oauth2.0 + oauth2Specification: + rootObject: + - credentials + - "0" + oauthFlowInitParameters: + - ["client_id"] + - ["client_secret"] + oauthFlowOutputParameters: + - ["refresh_token"] +advanced_auth: + auth_flow_type: oauth2.0 + predicate_key: + - credentials + - auth_type + predicate_value: Oauth + oauth_config_specification: + complete_oauth_output_specification: + type: object + additionalProperties: false + properties: + refresh_token: + type: string + path_in_connector_config: + - credentials + - refresh_token + complete_oauth_server_input_specification: + type: object + additionalProperties: false + properties: + client_id: + type: string + client_secret: + type: string + complete_oauth_server_output_specification: + type: object + additionalProperties: false + properties: + client_id: + type: string + path_in_connector_config: + - credentials + - client_id + client_secret: + type: string + path_in_connector_config: + - credentials + - client_secret \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-square/source_square/square.yaml b/airbyte-integrations/connectors/source-square/source_square/square.yaml new file mode 100644 index 000000000000..c97a43ebbd40 --- /dev/null +++ b/airbyte-integrations/connectors/source-square/source_square/square.yaml @@ -0,0 +1,311 @@ +version: "0.1.0" + +definitions: + schema_loader: + type: JsonFileSchemaLoader + file_path: "./source_square/schemas/{{ options['name'] }}.json" + oauth_authenticator: + type: OAuthAuthenticator + token_refresh_endpoint: https://connect.squareup.com/oauth2/token + client_id: "{{ config['credentials']['client_id'] }}" + client_secret: "{{ config['credentials']['client_secret'] }}" + refresh_token: "{{ config['credentials']['refresh_token'] }}" + token_expiry_date_format: "YYYY-MM-DDTHH:mm:ss[Z]" + expires_in_name: expires_at + bearer_authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + selector: + extractor: + field_pointer: ["{{ options['name'] }}"] + + requester: + url_base: "{{ 'https://connect.squareupsandbox.com/v2' if config['is_sandbox'] else 'https://connect.squareup.com/v2' }}" + http_method: "GET" + authenticator: + class_name: source_square.components.AuthenticatorSquare + bearer: "*ref(definitions.bearer_authenticator)" + oauth: "*ref(definitions.oauth_authenticator)" + + request_options_provider: + request_headers: + Square-Version: '2022-10-19' + Content-Type: 'application/json' + retriever: + record_selector: + $ref: "*ref(definitions.selector)" + requester: + $ref: "*ref(definitions.requester)" + + base_stream: + retriever: + $ref: "*ref(definitions.retriever)" + paginator: + type: DefaultPaginator + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response['cursor'] }}" + stop_condition: "{{ 'cursor' not in response }}" + page_size: 100 + page_size_option: + inject_into: "request_parameter" + field_name: "limit" + page_token_option: + inject_into: "request_parameter" + field_name: "cursor" + url_base: + $ref: "*ref(definitions.requester.url_base)" + + base_incremental_stream: + $options: + stream_cursor_field: "created_at" + retriever: + $ref: "*ref(definitions.retriever)" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_body_json: + sort_order: "ASC" + sort_field: "CREATED_AT" + paginator: + type: DefaultPaginator + url_base: "*ref(definitions.requester.url_base)" + pagination_strategy: + page_size: 100 + type: "CursorPagination" + cursor_value: "{{ response.cursor }}" + stop_condition: "{{ 'cursor' not in response }}" + page_token_option: + field_name: "cursor" + inject_into: "body_json" + page_size_option: + field_name: "limit" + inject_into: "body_json" + stream_slicer: + type: DatetimeStreamSlicer + start_datetime: + datetime: "{{ format_datetime(config['start_date'], '%Y-%m-%dT%H:%M:%S.%fZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + end_datetime: + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%fZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + step: 30d + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + cursor_field: "created_at" + start_time_option: + field_name: begin_time + inject_into: body_json + base_catalog_objects_stream: + $ref: "*ref(definitions.base_incremental_stream)" + stream_cursor_field: "updated_at" + $options: + primary_key: "id" + path: "/catalog/search" + retriever: + $ref: "*ref(definitions.retriever)" + record_selector: + extractor: + field_pointer: ["objects"] + requester: + $ref: "*ref(definitions.requester)" + http_method: "POST" + request_options_provider: + request_body_json: + include_related_objects: "{{ False }}" + include_deleted_objects: "{{ config['include_deleted_objects'] }}" + object_types: "{{ [options['object_type']] }}" + paginator: + type: DefaultPaginator + url_base: "*ref(definitions.requester.url_base)" + pagination_strategy: + page_size: 1000 + type: "CursorPagination" + cursor_value: "{{ response.cursor }}" + stop_condition: "{{ 'cursor' not in response }}" + page_token_option: + field_name: "cursor" + inject_into: "body_json" + page_size_option: + field_name: "limit" + inject_into: "body_json" + stream_slicer: + type: DatetimeStreamSlicer + start_datetime: + datetime: "{{ format_datetime(config['start_date'], '%Y-%m-%dT%H:%M:%S.%fZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + end_datetime: + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%fZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + step: 30d + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + cursor_field: "updated_at" + start_time_option: + field_name: begin_time + inject_into: body_json + base_stream_page_json_limit: + retriever: + $ref: "*ref(definitions.retriever)" + requester: + $ref: "*ref(definitions.requester)" + http_method: "POST" + + customers_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "customers" + primary_key: "id" + path: "/customers" + retriever: + $ref: "*ref(definitions.retriever)" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + sort_order: ASC + sort_field: CREATED_AT + + shifts_stream: + $ref: "*ref(definitions.base_stream_page_json_limit)" + $options: + name: "shifts" + primary_key: "id" + path: "labor/shifts/search" + retriever: + $ref: "*ref(definitions.base_stream_page_json_limit.retriever)" + paginator: + pagination_strategy: + page_size: 200 + page_size_option: + inject_into: "body_json" + field_name: "limit" + + team_members_stream: + $ref: "*ref(definitions.base_stream_page_json_limit)" + $options: + name: "team_members" + primary_key: "id" + path: "/team-members/search" + + team_member_wages_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "team_member_wages" + primary_key: "id" + path: "/labor/team-member-wages" + retriever: + $ref: "*ref(definitions.retriever)" + requester: + $ref: "*ref(definitions.requester)" + request_options_provider: + request_parameters: + sort_order: ASC + sort_field: CREATED_AT + paginator: + pagination_strategy: + page_size: 200 + locations_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "locations" + primary_key: "id" + path: "/locations" + + categories_stream: + $ref: "*ref(definitions.base_catalog_objects_stream)" + $options: + name: "categories" + object_type: "CATEGORY" + path: "/catalog/search" + + items_stream: + $ref: "*ref(definitions.base_catalog_objects_stream)" + $options: + name: "items" + object_type: "ITEM" + path: "/catalog/search" + + discounts_stream: + $ref: "*ref(definitions.base_catalog_objects_stream)" + $options: + name: "discounts" + object_type: "DISCOUNT" + path: "/catalog/search" + + taxes_stream: + $ref: "*ref(definitions.base_catalog_objects_stream)" + $options: + name: "taxes" + object_type: "TAX" + path: "/catalog/search" + + modifier_list_stream: + $ref: "*ref(definitions.base_catalog_objects_stream)" + $options: + name: "modifier_list" + object_type: "MODIFIER_LIST" + path: "/catalog/search" + + refunds_stream: + $ref: "*ref(definitions.base_incremental_stream)" + $options: + name: "refunds" + primary_key: "id" + path: "/refunds" + retriever: + $ref: "*ref(definitions.base_incremental_stream.retriever)" + + payments_stream: + $ref: "*ref(definitions.base_incremental_stream)" + $options: + name: "payments" + primary_key: "id" + path: "/payments" + retriever: + $ref: "*ref(definitions.base_incremental_stream.retriever)" + + orders_stream: + $ref: "*ref(definitions.base_stream_page_json_limit)" + $options: + name: "orders" + primary_key: "id" + path: "/orders/search" + retriever: + $ref: "*ref(definitions.base_stream_page_json_limit.retriever)" + requester: + $ref: "*ref(definitions.base_stream_page_json_limit.retriever.requester)" + http_method: "POST" + request_options_provider: + request_body_json: + limit: "{{ 500 }}" + stream_slicer: + class_name: source_square.components.SquareSubstreamSlicer + start_datetime: + datetime: "{{ format_datetime(config['start_date'], '%Y-%m-%dT%H:%M:%S.%fZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + end_datetime: + datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%S.%fZ') }}" + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + step: 30d + datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ" + parent_stream: "*ref(definitions.locations_stream)" + cursor_field: "updated_at" + parent_key: "id" + +streams: + - "*ref(definitions.customers_stream)" + - "*ref(definitions.locations_stream)" + - "*ref(definitions.shifts_stream)" + - "*ref(definitions.team_members_stream)" + - "*ref(definitions.team_member_wages_stream)" + - "*ref(definitions.items_stream)" + - "*ref(definitions.categories_stream)" + - "*ref(definitions.discounts_stream)" + - "*ref(definitions.taxes_stream)" + - "*ref(definitions.modifier_list_stream)" + - "*ref(definitions.refunds_stream)" + - "*ref(definitions.payments_stream)" + - "*ref(definitions.orders_stream)" + +check: + stream_names: + - "locations" diff --git a/airbyte-integrations/connectors/source-square/source_square/utils.py b/airbyte-integrations/connectors/source-square/source_square/utils.py deleted file mode 100644 index 6d4d79fb0f1a..000000000000 --- a/airbyte-integrations/connectors/source-square/source_square/utils.py +++ /dev/null @@ -1,35 +0,0 @@ -# -# Copyright (c) 2022 Airbyte, Inc., all rights reserved. -# - -from typing import Union - - -def separate_by_count(total_length: int, part_count: int) -> (int, int): - """ - Calculates parts needed to separate count by part_count value - For example: separate_by_count(total_length=196582, part_count=10000) returns (19, 6582) -> 19*10000 + 6582=196582 - - :param total_length: - :param part_count: - :return: Returns the total_parts and last part count - """ - total_parts = total_length // part_count - last_part = total_length - (part_count * total_parts) - return total_parts, last_part - - -def separate_items_by_count(item_list: Union[list, tuple], part_count: int) -> list: - if not item_list: - return [] - - total_parts, _ = separate_by_count(len(item_list), part_count) - - result_list = [] - for i in range(total_parts): - result_list.append(item_list[part_count * i : part_count * (i + 1)]) - - if len(item_list) % part_count != 0: - result_list.append(item_list[total_parts * part_count :]) - - return result_list diff --git a/airbyte-integrations/connectors/source-square/unit_tests/connection_test.py b/airbyte-integrations/connectors/source-square/unit_tests/connection_test.py deleted file mode 100644 index ae86daade38f..000000000000 --- a/airbyte-integrations/connectors/source-square/unit_tests/connection_test.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (c) 2022 Airbyte, Inc., all rights reserved. -# - -from airbyte_cdk.logger import AirbyteLogger -from source_square.source import SourceSquare - - -def test_source_wrong_credentials(): - source = SourceSquare() - config = { - "credentials": {"auth_type": "Apikey", "api_key": "bla"}, - "is_sandbox": True, - "start_date": "2021-06-01", - "include_deleted_objects": False, - } - status, error = source.check_connection(logger=AirbyteLogger(), config=config) - assert not status diff --git a/airbyte-integrations/connectors/source-square/unit_tests/test_component.py b/airbyte-integrations/connectors/source-square/unit_tests/test_component.py new file mode 100644 index 000000000000..7c7f5e911880 --- /dev/null +++ b/airbyte-integrations/connectors/source-square/unit_tests/test_component.py @@ -0,0 +1,134 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import logging +from unittest.mock import MagicMock + +import freezegun +import pendulum +import pytest +import requests_mock +from airbyte_cdk.models import SyncMode +from airbyte_cdk.sources.declarative.auth import DeclarativeOauth2Authenticator +from airbyte_cdk.sources.declarative.datetime import MinMaxDatetime +from source_square.components import SquareSubstreamSlicer +from source_square.source import SourceSquare + +DATETIME_FORMAT = "%Y-%m-%dT%H:%M:%S.%fZ" + + +@pytest.fixture +def req_mock(): + with requests_mock.Mocker() as mock: + yield mock + + +def test_source_wrong_credentials(): + source = SourceSquare() + config = { + "credentials": {"auth_type": "Apikey", "api_key": "bla"}, + "is_sandbox": True, + "start_date": "2021-06-01", + "include_deleted_objects": False, + } + status, error = source.check_connection(logger=logging.getLogger("airbyte"), config=config) + assert not status + + +@freezegun.freeze_time("2020-01-01") +def test_refresh_access_token(req_mock): + URL = "https://example.com" + TOKEN = "test_token" + next_day = "2020-01-02T00:00:00Z" + config = { + "refresh_endpoint": URL, + "client_id": "some_client_id", + "client_secret": "some_client_secret", + "token_expiry_date": pendulum.now().subtract(days=2).to_rfc3339_string(), + } + options = {"refresh_token": "some_refresh_token"} + + req_mock.post(URL, json={"access_token": TOKEN, "expires_in": next_day}) + authenticator = DeclarativeOauth2Authenticator( + token_refresh_endpoint=URL, + client_secret="client_secret", + client_id="client_id", + refresh_token="refresh_token", + token_expiry_date_format="YYYY-MM-DDTHH:mm:ss[Z]", + config=config, + options=options + ) + token = authenticator.get_access_token() + assert token == TOKEN + assert authenticator.get_token_expiry_date() == pendulum.parse(next_day) + + +@pytest.mark.parametrize( + "last_record, expected, records", + [ + ( + {"updated_at": "2022-09-05T10:10:10.000000Z"}, + {"updated_at": "2022-09-05T10:10:10.000000Z"}, + [{"id": "some_id"}], + ), + (None, {}, []), + ], +) +def test_sub_slicer(last_record, expected, records): + parent_stream = MagicMock() + parent_stream.read_records = MagicMock(return_value=records) + slicer = SquareSubstreamSlicer( + start_datetime=MinMaxDatetime(datetime="2021-01-01T00:00:00.000000+0000", options={}), + end_datetime=MinMaxDatetime(datetime="2021-01-10T00:00:00.000000+0000", options={}), + step="1d", + cursor_field="updated_at", + datetime_format=DATETIME_FORMAT, + options=None, + config={"start_date": "2021-01-01T00:00:00.000000+0000"}, + parent_key="id", + parent_stream=parent_stream + ) + stream_slice = next(slicer.stream_slices(SyncMode, {})) if records else {} + slicer.update_cursor(stream_slice=stream_slice, last_record=last_record) + assert slicer.get_stream_state() == expected + + +@pytest.mark.parametrize( + "last_record, records, expected_data", + [ + ( + {"updated_at": "2022-09-05T10:10:10.000000Z"}, + [{"id": "some_id1"}], + {"location_ids": ["some_id1"], "start_date": "2022-09-05T10:10:10.000000Z"} + ), + ( + {"updated_at": "2022-09-05T10:10:10.000000Z"}, + [{"id": f"some_id{x}"} for x in range(11)], + {"location_ids": [f"some_id{x}" for x in range(10)], + "start_date": "2022-09-05T10:10:10.000000Z"} + ), + ], +) +def test_sub_slicer_request_body(last_record, records, expected_data): + parent_stream = MagicMock + parent_stream.read_records = MagicMock(return_value=records) + slicer = SquareSubstreamSlicer( + start_datetime=MinMaxDatetime(datetime="2021-01-01T00:00:00.000000Z", options={}), + end_datetime=MinMaxDatetime(datetime="2021-01-10T00:00:00.000000Z", options={}), + step="1d", + cursor_field="updated_at", + datetime_format=DATETIME_FORMAT, + options=None, + config={"start_date": "2021-01-01T00:00:00.000000Z"}, + parent_key="id", + parent_stream=parent_stream + ) + stream_slice = next(slicer.stream_slices(SyncMode, {})) if records else {} + slicer.update_cursor(stream_slice=stream_slice, last_record=last_record) + expected_request_body = {"location_ids": expected_data.get("location_ids"), + "query": {"filter": { + "date_time_filter": {"updated_at": {"start_at": expected_data.get("start_date")}}}, + "sort": {"sort_field": "UPDATED_AT", "sort_order": "ASC"}}} + assert slicer.get_request_body_json(stream_state=slicer.get_stream_state(), + stream_slice=stream_slice) == expected_request_body diff --git a/airbyte-integrations/connectors/source-square/unit_tests/utils_test.py b/airbyte-integrations/connectors/source-square/unit_tests/utils_test.py deleted file mode 100644 index 318b85952b03..000000000000 --- a/airbyte-integrations/connectors/source-square/unit_tests/utils_test.py +++ /dev/null @@ -1,65 +0,0 @@ -# -# Copyright (c) 2022 Airbyte, Inc., all rights reserved. -# - -import math - -import pytest -from source_square.utils import separate_by_count, separate_items_by_count - - -def test_separate_by_count(): - total_parts, last_part = separate_by_count(total_length=196582, part_count=10000) - assert total_parts == 19 - assert last_part == 6582 - - total_parts, last_part = separate_by_count(total_length=1, part_count=10) - assert total_parts == 0 - assert last_part == 1 - - total_parts, last_part = separate_by_count(total_length=10000, part_count=10000) - assert total_parts == 1 - assert last_part == 0 - - with pytest.raises(ZeroDivisionError): - separate_by_count(total_length=0, part_count=0) - - total_parts, last_part = separate_by_count(total_length=0, part_count=10) - assert total_parts == 0 - assert last_part == 0 - - total_parts, last_part = separate_by_count(total_length=math.inf, part_count=10) - assert math.isnan(total_parts) is True - assert math.isnan(last_part) is True - - total_parts, last_part = separate_by_count(total_length=math.inf, part_count=math.inf) - assert math.isnan(total_parts) is True - assert math.isnan(last_part) is True - - -def test_separate_items_by_count(): - item_list = [i for i in range(10)] - - result_list = separate_items_by_count(item_list=[], part_count=10) - assert result_list == [] - - result_list = separate_items_by_count(item_list=item_list, part_count=1) - assert result_list == [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9]] - - result_list = separate_items_by_count(item_list=item_list, part_count=10) - assert result_list == [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]] - - result_list = separate_items_by_count(item_list=item_list, part_count=15) - assert result_list == [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]] - - result_list = separate_items_by_count(item_list=item_list, part_count=4) - assert result_list == [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9]] - - result_list = separate_items_by_count(item_list=item_list, part_count=5) - assert result_list == [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]] - - result_list = separate_items_by_count(item_list=item_list, part_count=9) - assert result_list == [[0, 1, 2, 3, 4, 5, 6, 7, 8], [9]] - - result_list = separate_items_by_count(item_list=None, part_count=5) - assert result_list == [] diff --git a/airbyte-integrations/connectors/source-survey-sparrow/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-survey-sparrow/integration_tests/sample_config.json index bec2965a4d7a..e13a8f76fc84 100644 --- a/airbyte-integrations/connectors/source-survey-sparrow/integration_tests/sample_config.json +++ b/airbyte-integrations/connectors/source-survey-sparrow/integration_tests/sample_config.json @@ -1,5 +1,5 @@ { "access_token": "", "survey_id": [1234, 5678], - "region": {"url_base": "https://eu-api.surveysparrow.com/v3"} + "region": { "url_base": "https://eu-api.surveysparrow.com/v3" } } diff --git a/airbyte-integrations/connectors/source-survey-sparrow/source_survey_sparrow/spec.yaml b/airbyte-integrations/connectors/source-survey-sparrow/source_survey_sparrow/spec.yaml index 913118c27c46..b87a22393046 100644 --- a/airbyte-integrations/connectors/source-survey-sparrow/source_survey_sparrow/spec.yaml +++ b/airbyte-integrations/connectors/source-survey-sparrow/source_survey_sparrow/spec.yaml @@ -21,7 +21,7 @@ connectionSpecification: description: A List of your survey ids for survey-specific stream order: 2 region: - title: Base URL + title: Base URL type: object description: Is your account location is EU based? If yes, the base url to retrieve data will be different. oneOf: diff --git a/airbyte-integrations/connectors/source-surveycto/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-surveycto/integration_tests/configured_catalog.json index 87da7722b391..6849413c6fd9 100644 --- a/airbyte-integrations/connectors/source-surveycto/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-surveycto/integration_tests/configured_catalog.json @@ -4,20 +4,13 @@ "stream": { "name": "baseline_ig", "json_schema": {}, - "supported_sync_modes": [ - "full_refresh", - "incremental" - ], + "supported_sync_modes": ["full_refresh", "incremental"], "source_defined_cursor": true, - "default_cursor_field": [ - "CompletionDate" - ] + "default_cursor_field": ["CompletionDate"] }, "sync_mode": "incremental", - "cursor_field": [ - "CompletionDate" - ], + "cursor_field": ["CompletionDate"], "destination_sync_mode": "append" } ] -} \ No newline at end of file +} diff --git a/airbyte-integrations/connectors/source-surveycto/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-surveycto/integration_tests/invalid_config.json index 1f8a29ad891f..9e8aa37935cb 100644 --- a/airbyte-integrations/connectors/source-surveycto/integration_tests/invalid_config.json +++ b/airbyte-integrations/connectors/source-surveycto/integration_tests/invalid_config.json @@ -4,4 +4,4 @@ "username": "This has the wrong format (email)", "password": "This has the wrong password", "start_date": "This has the wrong format" -} \ No newline at end of file +} diff --git a/airbyte-integrations/connectors/source-surveycto/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-surveycto/integration_tests/sample_config.json index 00140f6be564..a0453fa7de08 100644 --- a/airbyte-integrations/connectors/source-surveycto/integration_tests/sample_config.json +++ b/airbyte-integrations/connectors/source-surveycto/integration_tests/sample_config.json @@ -4,4 +4,4 @@ "username": "username for the surveycto", "password": "password", "start_date": "pulling the data from this date" -} \ No newline at end of file +} diff --git a/airbyte-integrations/connectors/source-surveycto/sample_files/configured_catalog.json b/airbyte-integrations/connectors/source-surveycto/sample_files/configured_catalog.json index 0f57f901a617..3b9f8864fbf6 100644 --- a/airbyte-integrations/connectors/source-surveycto/sample_files/configured_catalog.json +++ b/airbyte-integrations/connectors/source-surveycto/sample_files/configured_catalog.json @@ -1,25 +1,17 @@ { - "type": "CATALOG", - "catalog": { - "streams": [ - { - "form_id": [ - "form_id" - ], - "json_schema": { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": {} - }, - "supported_sync_modes": [ - "incremental", - "full_refresh" - ], - "supported_destination_sync_modes": [ - "overwrite", - "append_dedup" - ] - } - ] - } -} \ No newline at end of file + "type": "CATALOG", + "catalog": { + "streams": [ + { + "form_id": ["form_id"], + "json_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": {} + }, + "supported_sync_modes": ["incremental", "full_refresh"], + "supported_destination_sync_modes": ["overwrite", "append_dedup"] + } + ] + } +} diff --git a/airbyte-integrations/connectors/source-surveycto/source_surveycto/spec.yaml b/airbyte-integrations/connectors/source-surveycto/source_surveycto/spec.yaml index 65fbf9d703e2..1a4684f96cda 100644 --- a/airbyte-integrations/connectors/source-surveycto/source_surveycto/spec.yaml +++ b/airbyte-integrations/connectors/source-surveycto/source_surveycto/spec.yaml @@ -34,8 +34,8 @@ connectionSpecification: type: "string" description: "initial date for survey cto" title: "Start Date" - examples: + examples: - "Jan 09, 2022 00:00:00 AM" default: "Jan 09, 2022 00:00:00 AM" order: 4 - pattern: ^(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dic) [0-9]{2}, [0-9]{4} [0-9]{2}:[0-9]{2}:[0-9]{2} (AM|PM)$ \ No newline at end of file + pattern: ^(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dic) [0-9]{2}, [0-9]{4} [0-9]{2}:[0-9]{2}:[0-9]{2} (AM|PM)$ diff --git a/airbyte-integrations/connectors/source-surveymonkey/source_surveymonkey/spec.json b/airbyte-integrations/connectors/source-surveymonkey/source_surveymonkey/spec.json index 0a7e99a04b90..8d3b95018bfd 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/source_surveymonkey/spec.json +++ b/airbyte-integrations/connectors/source-surveymonkey/source_surveymonkey/spec.json @@ -10,11 +10,7 @@ "origin": { "type": "string", "order": 1, - "enum": [ - "USA", - "Europe", - "Canada" - ], + "enum": ["USA", "Europe", "Canada"], "default": "USA", "title": "Origin datacenter of the SurveyMonkey account", "description": "Depending on the originating datacenter of the SurveyMonkey account, the API access URL may be different." @@ -60,9 +56,7 @@ "type": "string", "description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated.", "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z?$", - "examples": [ - "2021-01-01T00:00:00Z" - ] + "examples": ["2021-01-01T00:00:00Z"] }, "survey_ids": { "type": "array", @@ -78,10 +72,7 @@ }, "advanced_auth": { "auth_flow_type": "oauth2.0", - "predicate_key": [ - "credentials", - "auth_method" - ], + "predicate_key": ["credentials", "auth_method"], "predicate_value": "oauth2.0", "oauth_config_specification": { "complete_oauth_output_specification": { @@ -90,10 +81,7 @@ "properties": { "access_token": { "type": "string", - "path_in_connector_config": [ - "credentials", - "access_token" - ] + "path_in_connector_config": ["credentials", "access_token"] } } }, @@ -115,17 +103,11 @@ "properties": { "client_id": { "type": "string", - "path_in_connector_config": [ - "credentials", - "client_id" - ] + "path_in_connector_config": ["credentials", "client_id"] }, "client_secret": { "type": "string", - "path_in_connector_config": [ - "credentials", - "client_secret" - ] + "path_in_connector_config": ["credentials", "client_secret"] } } }, @@ -135,9 +117,7 @@ "properties": { "origin": { "type": "string", - "path_in_connector_config": [ - "origin" - ] + "path_in_connector_config": ["origin"] } } } diff --git a/airbyte-integrations/connectors/source-tidb/src/test-integration/java/io/airbyte/integrations/source/tidb/TiDBSourceAcceptanceTest.java b/airbyte-integrations/connectors/source-tidb/src/test-integration/java/io/airbyte/integrations/source/tidb/TiDBSourceAcceptanceTest.java index 11a7d92f77a0..1b6ee282ac3b 100644 --- a/airbyte-integrations/connectors/source-tidb/src/test-integration/java/io/airbyte/integrations/source/tidb/TiDBSourceAcceptanceTest.java +++ b/airbyte-integrations/connectors/source-tidb/src/test-integration/java/io/airbyte/integrations/source/tidb/TiDBSourceAcceptanceTest.java @@ -16,13 +16,13 @@ import io.airbyte.integrations.standardtest.source.SourceAcceptanceTest; import io.airbyte.integrations.standardtest.source.TestDestinationEnv; import io.airbyte.integrations.util.HostPortResolver; +import io.airbyte.protocol.models.Field; +import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.CatalogHelpers; import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog; import io.airbyte.protocol.models.v0.ConfiguredAirbyteStream; import io.airbyte.protocol.models.v0.ConnectorSpecification; import io.airbyte.protocol.models.v0.DestinationSyncMode; -import io.airbyte.protocol.models.Field; -import io.airbyte.protocol.models.JsonSchemaType; import io.airbyte.protocol.models.v0.SyncMode; import java.util.HashMap; import org.jooq.DSLContext; diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile b/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile index dde1645f85bb..2e453506445a 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile +++ b/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile @@ -32,5 +32,5 @@ COPY source_tiktok_marketing ./source_tiktok_marketing ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=1.0.0 +LABEL io.airbyte.version=1.0.1 LABEL io.airbyte.name=airbyte/source-tiktok-marketing diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/acceptance-test-config.yml b/airbyte-integrations/connectors/source-tiktok-marketing/acceptance-test-config.yml index 80313a37eaf3..3f3067b67b13 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-tiktok-marketing/acceptance-test-config.yml @@ -28,22 +28,22 @@ tests: discovery: - config_path: "secrets/prod_config.json" backward_compatibility_tests_config: - disable_for_version: "0.1.17" + disable_for_version: "1.0.0" - config_path: "secrets/prod_config_with_day_granularity.json" backward_compatibility_tests_config: - disable_for_version: "0.1.17" + disable_for_version: "1.0.0" - config_path: "secrets/prod_config_with_lifetime_granularity.json" backward_compatibility_tests_config: - disable_for_version: "0.1.17" + disable_for_version: "1.0.0" - config_path: "secrets/config.json" backward_compatibility_tests_config: - disable_for_version: "0.1.17" + disable_for_version: "1.0.0" - config_path: "secrets/new_config_prod.json" backward_compatibility_tests_config: - disable_for_version: "0.1.17" + disable_for_version: "1.0.0" - config_path: "secrets/config_oauth.json" backward_compatibility_tests_config: - disable_for_version: "0.1.17" + disable_for_version: "1.0.0" basic_read: # New style streams (for >= 0.1.13): diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/streams.json b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/streams.json index b74de48cde65..c82bdad72388 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/streams.json +++ b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/streams.json @@ -108,13 +108,6 @@ "json_schema": {}, "supported_sync_modes": ["full_refresh"] }, - { - "name": "advertisers_audience_reports_hourly", - "json_schema": {}, - "supported_sync_modes": ["full_refresh", "incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["stat_time_hour"] - }, { "name": "advertisers_audience_reports_daily", "json_schema": {}, @@ -127,13 +120,6 @@ "json_schema": {}, "supported_sync_modes": ["full_refresh"] }, - { - "name": "ads_audience_reports_hourly", - "json_schema": {}, - "supported_sync_modes": ["full_refresh", "incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["stat_time_hour"] - }, { "name": "ads_audience_reports_daily", "json_schema": {}, @@ -141,13 +127,6 @@ "source_defined_cursor": true, "default_cursor_field": ["stat_time_day"] }, - { - "name": "ad_group_audience_reports_hourly", - "json_schema": {}, - "supported_sync_modes": ["full_refresh", "incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["stat_time_hour"] - }, { "name": "ad_group_audience_reports_daily", "json_schema": {}, @@ -155,13 +134,6 @@ "source_defined_cursor": true, "default_cursor_field": ["stat_time_day"] }, - { - "name": "campaigns_audience_reports_by_country_hourly", - "json_schema": {}, - "supported_sync_modes": ["full_refresh", "incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["stat_time_hour"] - }, { "name": "campaigns_audience_reports_by_country_daily", "json_schema": {}, diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/source.py b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/source.py index 6d34e5439f90..7d4c116e7a3d 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/source.py +++ b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/source.py @@ -158,18 +158,23 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: # 2. Basic report streams: reports = [AdsReports, AdGroupsReports, CampaignsReports] + audience_reports = [AdsAudienceReports, AdGroupAudienceReports, CampaignsAudienceReportsByCountry] if is_production: # 2.1 streams work only in prod env - reports.extend([AdvertisersReports, AdvertisersAudienceReports]) + reports.append(AdvertisersReports) + audience_reports.append(AdvertisersAudienceReports) for Report in reports: for Granularity in [Hourly, Daily, Lifetime]: streams.append(get_report_stream(Report, Granularity)(**args)) # 3. Audience report streams: - # Audience report supports lifetime metrics only at the ADVERTISER level (see 2.1). - for Report in [AdsAudienceReports, AdGroupAudienceReports, CampaignsAudienceReportsByCountry]: - for Granularity in [Hourly, Daily]: - streams.append(get_report_stream(Report, Granularity)(**args)) + for Report in audience_reports: + # As per TikTok's documentation, audience reports only support daily (not hourly) time dimension for metrics + streams.append(get_report_stream(Report, Daily)(**args)) + + # Audience report supports lifetime metrics only at the ADVERTISER level (see 2.1). + if Report == AdvertisersAudienceReports: + streams.append(get_report_stream(Report, Lifetime)(**args)) return streams diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py index 17efde817bf8..41c3ef34391d 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py +++ b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py @@ -134,8 +134,8 @@ def test_random_items(prepared_prod_args): @pytest.mark.parametrize( "config, stream_len", [ - (PROD_CONFIG_FILE, 26), - (SANDBOX_CONFIG_FILE, 19), + (PROD_CONFIG_FILE, 22), + (SANDBOX_CONFIG_FILE, 16), ], ) def test_source_streams(config, stream_len): diff --git a/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/schemas/workers.json b/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/schemas/workers.json index 9e390efbd8cc..a62c111265e8 100644 --- a/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/schemas/workers.json +++ b/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/schemas/workers.json @@ -1,47 +1,47 @@ { - "type": "object", - "properties": { - "account_sid": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "date_updated": { - "type": ["null", "string"], - "format": "date-time" - }, - "workspace_sid": { - "type": ["null", "string"] - }, - "attributes": { - "type": ["null", "string"] - }, - "date_status_changed": { - "type": ["null", "string"], - "format": "date-time" - }, - "friendly_name": { - "type": ["null", "string"] - }, - "available":{ - "type": ["null", "boolean"] - }, - "sid": { - "type": ["null", "string"] - }, - "actvity_name": { - "type": ["null", "string"] - }, - "activity_sid": { - "type": ["null", "string"] - }, - "url": { - "type": ["null", "string"] - }, - "links": { - "type": ["null", "object"] - } - } -} \ No newline at end of file + "type": "object", + "properties": { + "account_sid": { + "type": ["null", "string"] + }, + "date_created": { + "type": ["null", "string"], + "format": "date-time" + }, + "date_updated": { + "type": ["null", "string"], + "format": "date-time" + }, + "workspace_sid": { + "type": ["null", "string"] + }, + "attributes": { + "type": ["null", "string"] + }, + "date_status_changed": { + "type": ["null", "string"], + "format": "date-time" + }, + "friendly_name": { + "type": ["null", "string"] + }, + "available": { + "type": ["null", "boolean"] + }, + "sid": { + "type": ["null", "string"] + }, + "actvity_name": { + "type": ["null", "string"] + }, + "activity_sid": { + "type": ["null", "string"] + }, + "url": { + "type": ["null", "string"] + }, + "links": { + "type": ["null", "object"] + } + } +} diff --git a/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/schemas/workspaces.json b/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/schemas/workspaces.json index 1faa820ba07a..9d8028c567b5 100644 --- a/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/schemas/workspaces.json +++ b/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/schemas/workspaces.json @@ -1,49 +1,49 @@ { - "type": "object", - "properties": { - "timeout_actvity_name": { - "type": ["null", "string"] - }, - "events_filter": { - "type": ["null", "string"] - }, - "date_updated": { - "type": ["null", "string"], - "format": "date-time" - }, - "friendly_name": { - "type": ["null", "string"] - }, - "timeout_activity_sid": { - "type": ["null", "string"] - }, - "account_sid": { - "type": ["null", "string"] - }, - "default_acitvity_name": { - "type": ["null", "string"] - }, - "multi_task_enabled":{ - "type": ["null", "boolean"] - }, - "event_callback_url": { - "type": ["null", "string"] - }, - "sid": { - "type": ["null", "string"] - }, - "url": { - "type": ["null", "string"] - }, - "date_created": { - "type": ["null", "string"], - "format": "date-time" - }, - "default_activity_sid": { - "type": ["null", "string"] - }, - "links": { - "type": ["null", "object"] - } - } -} \ No newline at end of file + "type": "object", + "properties": { + "timeout_actvity_name": { + "type": ["null", "string"] + }, + "events_filter": { + "type": ["null", "string"] + }, + "date_updated": { + "type": ["null", "string"], + "format": "date-time" + }, + "friendly_name": { + "type": ["null", "string"] + }, + "timeout_activity_sid": { + "type": ["null", "string"] + }, + "account_sid": { + "type": ["null", "string"] + }, + "default_acitvity_name": { + "type": ["null", "string"] + }, + "multi_task_enabled": { + "type": ["null", "boolean"] + }, + "event_callback_url": { + "type": ["null", "string"] + }, + "sid": { + "type": ["null", "string"] + }, + "url": { + "type": ["null", "string"] + }, + "date_created": { + "type": ["null", "string"], + "format": "date-time" + }, + "default_activity_sid": { + "type": ["null", "string"] + }, + "links": { + "type": ["null", "object"] + } + } +} diff --git a/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/twilio_taskrouter.yaml b/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/twilio_taskrouter.yaml index fdbe8cf15b9d..9662cd24a28e 100644 --- a/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/twilio_taskrouter.yaml +++ b/airbyte-integrations/connectors/source-twilio-taskrouter/source_twilio_taskrouter/twilio_taskrouter.yaml @@ -1,6 +1,5 @@ version: "0.1.0" - definitions: selector: extractor: @@ -44,7 +43,7 @@ definitions: name: "workspaces" path: "/v1/Workspaces" primary_key: "sid" - + workspace_stream_slicer: type: SubstreamSlicer parent_stream_configs: diff --git a/airbyte-integrations/connectors/source-zenloop/source_zenloop/zenloop.yaml b/airbyte-integrations/connectors/source-zenloop/source_zenloop/zenloop.yaml index f9605217cf20..e6ba77cf302b 100644 --- a/airbyte-integrations/connectors/source-zenloop/source_zenloop/zenloop.yaml +++ b/airbyte-integrations/connectors/source-zenloop/source_zenloop/zenloop.yaml @@ -136,7 +136,6 @@ definitions: - "*ref(definitions.survey_groups_slicer)" - "*ref(definitions.date_slicer)" - streams: - "*ref(definitions.surveys)" - "*ref(definitions.survey_groups)" @@ -146,4 +145,4 @@ streams: check: type: CheckStream - stream_names: ["surveys"] \ No newline at end of file + stream_names: ["surveys"] diff --git a/airbyte-metrics/reporter/Dockerfile b/airbyte-metrics/reporter/Dockerfile index b02a8680da07..527b3ad272d5 100644 --- a/airbyte-metrics/reporter/Dockerfile +++ b/airbyte-metrics/reporter/Dockerfile @@ -1,7 +1,7 @@ ARG JDK_IMAGE=airbyte/airbyte-base-java-image:1.0 FROM ${JDK_IMAGE} AS metrics-reporter -ARG VERSION=0.40.25 +ARG VERSION=0.40.26 ENV APPLICATION airbyte-metrics-reporter ENV VERSION ${VERSION} diff --git a/airbyte-proxy/Dockerfile b/airbyte-proxy/Dockerfile index b88e561b470d..b77981c68b0e 100644 --- a/airbyte-proxy/Dockerfile +++ b/airbyte-proxy/Dockerfile @@ -2,7 +2,7 @@ FROM nginx:latest -ARG VERSION=0.40.25 +ARG VERSION=0.40.26 ENV APPLICATION airbyte-proxy ENV VERSION ${VERSION} diff --git a/airbyte-server/Dockerfile b/airbyte-server/Dockerfile index bb3920eb74fd..b9abc75ab7eb 100644 --- a/airbyte-server/Dockerfile +++ b/airbyte-server/Dockerfile @@ -3,7 +3,7 @@ FROM ${JDK_IMAGE} AS server EXPOSE 8000 -ARG VERSION=0.40.25 +ARG VERSION=0.40.26 ENV APPLICATION airbyte-server ENV VERSION ${VERSION} diff --git a/airbyte-server/src/main/java/io/airbyte/server/handlers/OAuthHandler.java b/airbyte-server/src/main/java/io/airbyte/server/handlers/OAuthHandler.java index 1d1517fd444d..5e528cf5a230 100644 --- a/airbyte-server/src/main/java/io/airbyte/server/handlers/OAuthHandler.java +++ b/airbyte-server/src/main/java/io/airbyte/server/handlers/OAuthHandler.java @@ -116,8 +116,10 @@ public OAuthConsentRead getSourceOAuthConsent(final SourceOauthConsentRequest so public OAuthConsentRead getDestinationOAuthConsent(final DestinationOauthConsentRequest destinationOauthConsentRequest) throws JsonValidationException, ConfigNotFoundException, IOException { - ApmTraceUtils.addTagsToTrace(Map.of(WORKSPACE_ID_KEY, destinationOauthConsentRequest.getWorkspaceId(), DESTINATION_DEFINITION_ID_KEY, - destinationOauthConsentRequest.getDestinationDefinitionId())); + final Map traceTags = Map.of(WORKSPACE_ID_KEY, destinationOauthConsentRequest.getWorkspaceId(), DESTINATION_DEFINITION_ID_KEY, + destinationOauthConsentRequest.getDestinationDefinitionId()); + ApmTraceUtils.addTagsToTrace(traceTags); + ApmTraceUtils.addTagsToRootSpan(traceTags); final StandardDestinationDefinition destinationDefinition = configRepository.getStandardDestinationDefinition(destinationOauthConsentRequest.getDestinationDefinitionId()); @@ -162,8 +164,10 @@ public OAuthConsentRead getDestinationOAuthConsent(final DestinationOauthConsent public Map completeSourceOAuth(final CompleteSourceOauthRequest completeSourceOauthRequest) throws JsonValidationException, ConfigNotFoundException, IOException { - ApmTraceUtils.addTagsToTrace(Map.of(WORKSPACE_ID_KEY, completeSourceOauthRequest.getWorkspaceId(), SOURCE_DEFINITION_ID_KEY, - completeSourceOauthRequest.getSourceDefinitionId())); + final Map traceTags = Map.of(WORKSPACE_ID_KEY, completeSourceOauthRequest.getWorkspaceId(), SOURCE_DEFINITION_ID_KEY, + completeSourceOauthRequest.getSourceDefinitionId()); + ApmTraceUtils.addTagsToTrace(traceTags); + ApmTraceUtils.addTagsToRootSpan(traceTags); final StandardSourceDefinition sourceDefinition = configRepository.getStandardSourceDefinition(completeSourceOauthRequest.getSourceDefinitionId()); @@ -210,8 +214,10 @@ public Map completeSourceOAuth(final CompleteSourceOauthRequest public Map completeDestinationOAuth(final CompleteDestinationOAuthRequest completeDestinationOAuthRequest) throws JsonValidationException, ConfigNotFoundException, IOException { - ApmTraceUtils.addTagsToTrace(Map.of(WORKSPACE_ID_KEY, completeDestinationOAuthRequest.getWorkspaceId(), DESTINATION_DEFINITION_ID_KEY, - completeDestinationOAuthRequest.getDestinationDefinitionId())); + final Map traceTags = Map.of(WORKSPACE_ID_KEY, completeDestinationOAuthRequest.getWorkspaceId(), DESTINATION_DEFINITION_ID_KEY, + completeDestinationOAuthRequest.getDestinationDefinitionId()); + ApmTraceUtils.addTagsToTrace(traceTags); + ApmTraceUtils.addTagsToRootSpan(traceTags); final StandardDestinationDefinition destinationDefinition = configRepository.getStandardDestinationDefinition(completeDestinationOAuthRequest.getDestinationDefinitionId()); diff --git a/airbyte-webapp/package-lock.json b/airbyte-webapp/package-lock.json index ed2ff4d89b67..d5e4305f1bd1 100644 --- a/airbyte-webapp/package-lock.json +++ b/airbyte-webapp/package-lock.json @@ -1,12 +1,12 @@ { "name": "airbyte-webapp", - "version": "0.40.25", + "version": "0.40.26", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "airbyte-webapp", - "version": "0.40.25", + "version": "0.40.26", "dependencies": { "@datadog/browser-rum": "^4.21.2", "@floating-ui/react-dom": "^1.0.0", diff --git a/airbyte-webapp/package.json b/airbyte-webapp/package.json index 9ae7f422a0aa..eb578d79b2bf 100644 --- a/airbyte-webapp/package.json +++ b/airbyte-webapp/package.json @@ -1,6 +1,6 @@ { "name": "airbyte-webapp", - "version": "0.40.25", + "version": "0.40.26", "private": true, "engines": { "node": "16.18.1" diff --git a/airbyte-webapp/src/components/CreateConnection/CreateConnectionForm.tsx b/airbyte-webapp/src/components/CreateConnection/CreateConnectionForm.tsx index 10986c8f6fe3..ea905a5e2c9e 100644 --- a/airbyte-webapp/src/components/CreateConnection/CreateConnectionForm.tsx +++ b/airbyte-webapp/src/components/CreateConnection/CreateConnectionForm.tsx @@ -42,7 +42,7 @@ const CreateConnectionFormInner: React.FC = ({ schem const navigate = useNavigate(); const canEditDataGeographies = useFeature(FeatureItem.AllowChangeDataGeographies); const { mutateAsync: createConnection } = useCreateConnection(); - const allowAutoDetectSchemaChanges = useFeature(FeatureItem.AllowAutoDetectSchemaChanges); + const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema); const { clearFormChange } = useFormChangeTrackerService(); const workspaceId = useCurrentWorkspaceId(); @@ -58,7 +58,7 @@ const CreateConnectionFormInner: React.FC = ({ schem workspaceId, mode, allowSubOneHourCronExpressions, - allowAutoDetectSchemaChanges + allowAutoDetectSchema ); try { @@ -93,7 +93,7 @@ const CreateConnectionFormInner: React.FC = ({ schem workspaceId, mode, allowSubOneHourCronExpressions, - allowAutoDetectSchemaChanges, + allowAutoDetectSchema, createConnection, connection.source, connection.destination, @@ -118,7 +118,7 @@ const CreateConnectionFormInner: React.FC = ({ schem validationSchema={createConnectionValidationSchema({ mode, allowSubOneHourCronExpressions, - allowAutoDetectSchemaChanges, + allowAutoDetectSchema, })} onSubmit={onFormSubmit} > diff --git a/airbyte-webapp/src/components/EntityTable/ConnectionTable.tsx b/airbyte-webapp/src/components/EntityTable/ConnectionTable.tsx index 44a6ffcf005c..e57b1e15bc05 100644 --- a/airbyte-webapp/src/components/EntityTable/ConnectionTable.tsx +++ b/airbyte-webapp/src/components/EntityTable/ConnectionTable.tsx @@ -28,7 +28,7 @@ interface IProps { const ConnectionTable: React.FC = ({ data, entity, onClickRow, onSync }) => { const navigate = useNavigate(); const query = useQuery<{ sortBy?: string; order?: SortOrderEnum }>(); - const allowAutoDetectSchemaChanges = useFeature(FeatureItem.AllowAutoDetectSchemaChanges); + const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema); const allowSync = useFeature(FeatureItem.AllowSync); const sortBy = query.sortBy || "entityName"; @@ -163,7 +163,7 @@ const ConnectionTable: React.FC = ({ data, entity, onClickRow, onSync }) isSyncing={row.original.isSyncing} isManual={row.original.scheduleType === ConnectionScheduleType.manual} onSync={onSync} - hasBreakingChange={allowAutoDetectSchemaChanges && row.original.schemaChange === SchemaChange.breaking} + hasBreakingChange={allowAutoDetectSchema && row.original.schemaChange === SchemaChange.breaking} allowSync={allowSync} /> ), @@ -175,7 +175,7 @@ const ConnectionTable: React.FC = ({ data, entity, onClickRow, onSync }) Cell: ({ cell }: CellProps) => , }, ], - [sortBy, sortOrder, entity, onSortClick, onSync, allowSync, allowAutoDetectSchemaChanges] + [sortBy, sortOrder, entity, onSortClick, onSync, allowSync, allowAutoDetectSchema] ); return ; diff --git a/airbyte-webapp/src/components/EntityTable/components/StatusCell.tsx b/airbyte-webapp/src/components/EntityTable/components/StatusCell.tsx index 8a62fbb82f2e..790c45e41fca 100644 --- a/airbyte-webapp/src/components/EntityTable/components/StatusCell.tsx +++ b/airbyte-webapp/src/components/EntityTable/components/StatusCell.tsx @@ -28,7 +28,7 @@ export const StatusCell: React.FC = ({ schemaChange, hasBreakingChange, }) => { - const allowAutoDetectSchemaChanges = useFeature(FeatureItem.AllowAutoDetectSchemaChanges); + const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema); return (
    @@ -41,7 +41,7 @@ export const StatusCell: React.FC = ({ hasBreakingChange={hasBreakingChange} allowSync={allowSync} /> - {allowAutoDetectSchemaChanges && } + {allowAutoDetectSchema && }
    ); }; diff --git a/airbyte-webapp/src/components/common/DeleteBlock/DeleteBlock.module.scss b/airbyte-webapp/src/components/common/DeleteBlock/DeleteBlock.module.scss index bf0084c28678..3c639d14f827 100644 --- a/airbyte-webapp/src/components/common/DeleteBlock/DeleteBlock.module.scss +++ b/airbyte-webapp/src/components/common/DeleteBlock/DeleteBlock.module.scss @@ -1,8 +1,9 @@ +@use "scss/variables"; @use "scss/colors"; .deleteBlock { - margin-top: 12px; - padding: 19px 20px 20px; + margin-top: variables.$spacing-md; + padding: variables.$spacing-xl; display: flex; align-items: center; justify-content: space-between; diff --git a/airbyte-webapp/src/components/connection/CatalogTree/CatalogSection.tsx b/airbyte-webapp/src/components/connection/CatalogTree/CatalogSection.tsx index 0b8792a09d4d..c8d2793e85ae 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/CatalogSection.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/CatalogSection.tsx @@ -203,6 +203,8 @@ const CatalogSectionInner: React.FC = ({ onSelectedChange={onSelectStream} shouldDefinePk={shouldDefinePk} shouldDefineCursor={shouldDefineCursor} + isCursorDefinitionSupported={cursorRequired} + isPKDefinitionSupported={pkRequired} stream={stream} /> ) : ( diff --git a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamDetailsPanel.tsx b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamDetailsPanel.tsx index aea07bbb83eb..fb0ed0625471 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamDetailsPanel.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamDetailsPanel.tsx @@ -17,6 +17,7 @@ interface StreamDetailsPanelProps extends StreamFieldsTableProps { } export const StreamDetailsPanel: React.FC = ({ + stream, config, disabled, onPkSelect, @@ -25,7 +26,8 @@ export const StreamDetailsPanel: React.FC = ({ onSelectedChange, shouldDefinePk, shouldDefineCursor, - stream, + isCursorDefinitionSupported, + isPKDefinitionSupported, syncSchemaFields, }) => { return ( @@ -47,6 +49,8 @@ export const StreamDetailsPanel: React.FC = ({ onPkSelect={onPkSelect} shouldDefinePk={shouldDefinePk} shouldDefineCursor={shouldDefineCursor} + isCursorDefinitionSupported={isCursorDefinitionSupported} + isPKDefinitionSupported={isPKDefinitionSupported} /> diff --git a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/CursorCell.module.scss b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/CursorCell.module.scss new file mode 100644 index 000000000000..ce46b50cf07b --- /dev/null +++ b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/CursorCell.module.scss @@ -0,0 +1,4 @@ +.tooltip { + display: flex; + align-items: center; +} diff --git a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/CursorCell.tsx b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/CursorCell.tsx new file mode 100644 index 000000000000..f71c9ce3e270 --- /dev/null +++ b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/CursorCell.tsx @@ -0,0 +1,44 @@ +import { CellContext } from "@tanstack/react-table"; +import React from "react"; +import { FormattedMessage } from "react-intl"; + +import { RadioButton } from "components/ui/RadioButton"; +import { Tooltip, TooltipLearnMoreLink } from "components/ui/Tooltip"; + +import { links } from "utils/links"; + +import { TableStream } from "../StreamFieldsTable"; +import styles from "./CursorCell.module.scss"; + +interface CursorCellProps extends CellContext { + isCursorDefinitionSupported: boolean; + isCursor: (path: string[]) => boolean; + onCursorSelect: (cursorPath: string[]) => void; +} + +export const CursorCell: React.FC = ({ + getValue, + row, + isCursorDefinitionSupported, + isCursor, + onCursorSelect, +}) => { + if (!isCursorDefinitionSupported) { + return null; + } + + const isCursorChecked = isCursor(row.original.path); + + const radioButton = ( + onCursorSelect(row.original.path)} disabled={!getValue()} /> + ); + + return !getValue() && isCursorChecked ? ( + + + + + ) : ( + radioButton + ); +}; diff --git a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/index.tsx b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/index.tsx new file mode 100644 index 000000000000..840bb0efe410 --- /dev/null +++ b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/CursorCell/index.tsx @@ -0,0 +1 @@ +export { CursorCell } from "./CursorCell"; diff --git a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/PKCell/PKCell.tsx b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/PKCell/PKCell.tsx new file mode 100644 index 000000000000..b24fecbce39c --- /dev/null +++ b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/PKCell/PKCell.tsx @@ -0,0 +1,37 @@ +import { CellContext } from "@tanstack/react-table"; +import React from "react"; +import { FormattedMessage } from "react-intl"; + +import { CheckBox } from "components/ui/CheckBox"; +import { Tooltip, TooltipLearnMoreLink } from "components/ui/Tooltip"; + +import { links } from "utils/links"; + +import { TableStream } from "../StreamFieldsTable"; + +interface PKCellProps extends CellContext { + isPKDefinitionSupported: boolean; + isPrimaryKey: (path: string[]) => boolean; + onPkSelect: (pkPath: string[]) => void; +} + +export const PKCell: React.FC = ({ getValue, row, isPKDefinitionSupported, isPrimaryKey, onPkSelect }) => { + if (!isPKDefinitionSupported) { + return null; + } + + const isPKChecked = isPrimaryKey(row.original.path); + + const checkbox = ( + onPkSelect(row.original.path)} disabled={!getValue()} /> + ); + + return !getValue() && isPKChecked ? ( + + + + + ) : ( + checkbox + ); +}; diff --git a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/PKCell/index.tsx b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/PKCell/index.tsx new file mode 100644 index 000000000000..70fbec1da544 --- /dev/null +++ b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/PKCell/index.tsx @@ -0,0 +1 @@ +export { PKCell } from "./PKCell"; diff --git a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/StreamFieldsTable.module.scss b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/StreamFieldsTable.module.scss index 9a0f2a40bbbd..67c68c04a842 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/StreamFieldsTable.module.scss +++ b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/StreamFieldsTable.module.scss @@ -79,15 +79,10 @@ $cell-left-padding: variables.$spacing-xl + variables.$spacing-sm; } } -.checkboxCell { +.radioBtnCell { display: flex; align-items: center; height: $cell-height; overflow: unset; padding-left: 0; } - -// need to fix styled-component z-index issue -.checkbox { - position: unset !important; -} diff --git a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/StreamFieldsTable.tsx b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/StreamFieldsTable.tsx index 86c92a6bc33a..3f6f9f6a5f16 100644 --- a/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/StreamFieldsTable.tsx +++ b/airbyte-webapp/src/components/connection/CatalogTree/next/StreamDetailsPanel/StreamFieldsTable/StreamFieldsTable.tsx @@ -4,9 +4,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import { pathDisplayName } from "components/connection/CatalogTree/PathPopout"; import { ArrowRightIcon } from "components/icons/ArrowRightIcon"; -import { CheckBox } from "components/ui/CheckBox"; import { NextTable } from "components/ui/NextTable"; -import { RadioButton } from "components/ui/RadioButton"; import { SyncSchemaField, SyncSchemaFieldObject } from "core/domain/catalog"; import { AirbyteStreamConfiguration } from "core/request/AirbyteClient"; @@ -17,9 +15,11 @@ import { equal } from "utils/objects"; import { getDataType } from "utils/useTranslateDataType"; import { ConnectorHeaderGroupIcon } from "./ConnectorHeaderGroupIcon"; +import { CursorCell } from "./CursorCell"; +import { PKCell } from "./PKCell"; import styles from "./StreamFieldsTable.module.scss"; -interface TableStream { +export interface TableStream { path: string[]; dataType: string; cursorDefined?: boolean; @@ -32,6 +32,8 @@ export interface StreamFieldsTableProps { onPkSelect: (pkPath: string[]) => void; shouldDefinePk: boolean; shouldDefineCursor: boolean; + isCursorDefinitionSupported: boolean; + isPKDefinitionSupported: boolean; syncSchemaFields: SyncSchemaField[]; } @@ -41,6 +43,8 @@ export const StreamFieldsTable: React.FC = ({ onCursorSelect, shouldDefineCursor, shouldDefinePk, + isCursorDefinitionSupported, + isPKDefinitionSupported, syncSchemaFields, }) => { const { formatMessage } = useIntl(); @@ -97,33 +101,47 @@ export const StreamFieldsTable: React.FC = ({ columnHelper.accessor("cursorDefined", { id: "sourceCursorDefined", header: () => , - cell: ({ getValue, row }) => - getValue() && ( - onCursorSelect(row.original.path)} /> - ), + cell: (props) => ( + + ), meta: { thClassName: styles.headerCell, - tdClassName: styles.checkboxCell, + tdClassName: styles.radioBtnCell, }, }), columnHelper.accessor("primaryKeyDefined", { id: "sourcePrimaryKeyDefined", header: () => , - cell: ({ getValue, row }) => - getValue() && ( - onPkSelect(row.original.path)} - className={styles.checkbox} - /> - ), + cell: (props) => ( + + ), + meta: { thClassName: styles.headerCell, tdClassName: styles.textCell, }, }), ], - [columnHelper, formatMessage, isCursor, isPrimaryKey, onCursorSelect, onPkSelect] + [ + columnHelper, + formatMessage, + isCursor, + isPrimaryKey, + isCursorDefinitionSupported, + isPKDefinitionSupported, + onCursorSelect, + onPkSelect, + ] ); const destinationColumns = useMemo( diff --git a/airbyte-webapp/src/components/ui/CheckBox/CheckBox.module.scss b/airbyte-webapp/src/components/ui/CheckBox/CheckBox.module.scss index 07b0ac944b5e..c3a67ea8d793 100644 --- a/airbyte-webapp/src/components/ui/CheckBox/CheckBox.module.scss +++ b/airbyte-webapp/src/components/ui/CheckBox/CheckBox.module.scss @@ -19,8 +19,9 @@ $sm-size: 14px; display: none; } - .disabled { + &.disabled { border-color: colors.$grey-30; + cursor: not-allowed; } } diff --git a/airbyte-webapp/src/components/ui/NextTable/NextTable.module.scss b/airbyte-webapp/src/components/ui/NextTable/NextTable.module.scss index 0cd535690266..25e49218fe98 100644 --- a/airbyte-webapp/src/components/ui/NextTable/NextTable.module.scss +++ b/airbyte-webapp/src/components/ui/NextTable/NextTable.module.scss @@ -1,5 +1,6 @@ @use "scss/colors"; @use "scss/variables" as vars; +@use "scss/z-indices"; // -------
    -------- .table { @@ -12,6 +13,7 @@ .thead { position: sticky; top: 0; + z-index: z-indices.$tableScroll; } // ---------
    --------- diff --git a/airbyte-webapp/src/components/ui/RadioButton/RadioButton.tsx b/airbyte-webapp/src/components/ui/RadioButton/RadioButton.tsx index f56b52b195cd..85b1e717549a 100644 --- a/airbyte-webapp/src/components/ui/RadioButton/RadioButton.tsx +++ b/airbyte-webapp/src/components/ui/RadioButton/RadioButton.tsx @@ -26,7 +26,7 @@ const RadioButtonContainer = styled.label<{ checked?: boolean; disabled?: boolea border-radius: 50%; display: inline-block; padding: 4px; - cursor: pointer; + cursor: ${({ disabled }) => (disabled ? "not-allowed" : "pointer")}; `; export const RadioButton: React.FC> = (props) => { diff --git a/airbyte-webapp/src/components/ui/Switch/Switch.module.scss b/airbyte-webapp/src/components/ui/Switch/Switch.module.scss index 3cfc6177a1e7..e1a73ca0ecc2 100644 --- a/airbyte-webapp/src/components/ui/Switch/Switch.module.scss +++ b/airbyte-webapp/src/components/ui/Switch/Switch.module.scss @@ -1,5 +1,6 @@ @use "scss/colors"; @use "scss/variables"; +@use "scss/z-indices"; @mixin knob-transform($position, $small: false) { @if $position == left { @@ -41,7 +42,7 @@ &::before { position: absolute; - z-index: 1; + z-index: z-indices.$switchSliderBefore; content: ""; height: 24px; width: 24px; diff --git a/airbyte-webapp/src/hooks/connection/useSchemaChanges.ts b/airbyte-webapp/src/hooks/connection/useSchemaChanges.ts index e37c3447ca4f..ce2eee0ee809 100644 --- a/airbyte-webapp/src/hooks/connection/useSchemaChanges.ts +++ b/airbyte-webapp/src/hooks/connection/useSchemaChanges.ts @@ -4,10 +4,10 @@ import { SchemaChange } from "core/request/AirbyteClient"; import { FeatureItem, useFeature } from "hooks/services/Feature"; export const useSchemaChanges = (schemaChange: SchemaChange) => { - const allowAutoDetectSchemaChanges = useFeature(FeatureItem.AllowAutoDetectSchemaChanges); + const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema); return useMemo(() => { - const hasSchemaChanges = allowAutoDetectSchemaChanges && schemaChange !== SchemaChange.no_change; + const hasSchemaChanges = allowAutoDetectSchema && schemaChange !== SchemaChange.no_change; const hasBreakingSchemaChange = hasSchemaChanges && schemaChange === SchemaChange.breaking; const hasNonBreakingSchemaChange = hasSchemaChanges && schemaChange === SchemaChange.non_breaking; @@ -17,5 +17,5 @@ export const useSchemaChanges = (schemaChange: SchemaChange) => { hasBreakingSchemaChange, hasNonBreakingSchemaChange, }; - }, [allowAutoDetectSchemaChanges, schemaChange]); + }, [allowAutoDetectSchema, schemaChange]); }; diff --git a/airbyte-webapp/src/hooks/services/ConnectionForm/ConnectionFormService.tsx b/airbyte-webapp/src/hooks/services/ConnectionForm/ConnectionFormService.tsx index 2fb7662563df..ccc1a69a5ceb 100644 --- a/airbyte-webapp/src/hooks/services/ConnectionForm/ConnectionFormService.tsx +++ b/airbyte-webapp/src/hooks/services/ConnectionForm/ConnectionFormService.tsx @@ -39,14 +39,14 @@ export const tidyConnectionFormValues = ( workspaceId: string, mode: ConnectionFormMode, allowSubOneHourCronExpressions: boolean, - allowAutoDetectSchemaChanges: boolean, + allowAutoDetectSchema: boolean, operations?: OperationRead[] ): ValuesProps => { // TODO (https://github.com/airbytehq/airbyte/issues/17279): We should try to fix the types so we don't need the casting. const formValues: ConnectionFormValues = createConnectionValidationSchema({ mode, allowSubOneHourCronExpressions, - allowAutoDetectSchemaChanges, + allowAutoDetectSchema, }).cast(values, { context: { isRequest: true }, }) as unknown as ConnectionFormValues; diff --git a/airbyte-webapp/src/hooks/services/Feature/types.tsx b/airbyte-webapp/src/hooks/services/Feature/types.tsx index b35a36b4be55..e6dac29a8fb1 100644 --- a/airbyte-webapp/src/hooks/services/Feature/types.tsx +++ b/airbyte-webapp/src/hooks/services/Feature/types.tsx @@ -4,7 +4,7 @@ */ export enum FeatureItem { - AllowAutoDetectSchemaChanges = "ALLOW_AUTO_DETECT_SCHEMA_CHANGES", + AllowAutoDetectSchema = "ALLOW_AUTO_DETECT_SCHEMA", AllowUploadCustomImage = "ALLOW_UPLOAD_CUSTOM_IMAGE", AllowCustomDBT = "ALLOW_CUSTOM_DBT", AllowDBTCloudIntegration = "ALLOW_DBT_CLOUD_INTEGRATION", diff --git a/airbyte-webapp/src/locales/en.json b/airbyte-webapp/src/locales/en.json index e2f29c2675e3..f34580fab3ae 100644 --- a/airbyte-webapp/src/locales/en.json +++ b/airbyte-webapp/src/locales/en.json @@ -153,7 +153,7 @@ "connectionForm.nonBreakingChangesPreference.label": "Non-breaking schema updates detected*", "connectionForm.nonBreakingChangesPreference.message": "Set how Airbyte handles syncs when it detects a non-breaking schema change in the source", "connectionForm.nonBreakingChangesPreference.ignore": "Ignore", - "connectionForm.nonBreakingChangesPreference.disable": "Pause sync", + "connectionForm.schemaChangesBackdrop.message": "Please review the schema updates before making changes to the connection", "connectionForm.modal.destinationNamespace.title": "Destination namespace", "connectionForm.modal.destinationNamespace.option.source": "Mirror source structure", @@ -226,6 +226,8 @@ "form.field.destinationName": "Destination name", "form.field.primaryKey": "Primary key", "form.field.cursorField": "Cursor field", + "form.field.sourceDefinedCursor": "Source-Defined Cursor", + "form.field.sourceDefinedPK": "Source-Defined Primary key", "preferences.headTitle": "Preferences", "preferences.title": "Specify your preferences", @@ -379,6 +381,10 @@ "connection.catalogTree.sourceSchema": "'", "connection.catalogTree.destinationSchema": "'", + "connection.schemaUpdateNotifications.title": "Schema update notifications", + "connection.schemaUpdateNotifications.info": "Send webhook notifications when your source schema has changed", + "connection.schemaUpdateNotifications.error": "Unable to save the schema update notifications setting at this time.", + "connection.geographyTitle": "Data residency", "connection.requestNewGeography": "Request a new geography", "connection.geographyDescription": "Choose where the data for this connection will be processed. Depending on your network configuration, you may need to add IP addresses to your allowlist. Learn more.", diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionPageTitle.module.scss b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionPageTitle.module.scss index 4b632af27253..45d8764d5431 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionPageTitle.module.scss +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionPageTitle.module.scss @@ -1,5 +1,5 @@ -@use "../../../../scss/colors"; -@use "../../../../scss/variables"; +@use "scss/colors"; +@use "scss/variables"; .container { text-align: center; diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionReplicationTab.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionReplicationTab.tsx index c0fb0dbed2d7..54b3c4a803df 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionReplicationTab.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionReplicationTab.tsx @@ -22,6 +22,7 @@ import { useConnectionService, ValuesProps } from "hooks/services/useConnectionH import { useCurrentWorkspaceId } from "services/workspaces/WorkspacesService"; import { equal } from "utils/objects"; import EditControls from "views/Connection/ConnectionForm/components/EditControls"; +import { SchemaChangeBackdrop } from "views/Connection/ConnectionForm/components/SchemaChangeBackdrop"; import { ConnectionFormFields } from "views/Connection/ConnectionForm/ConnectionFormFields"; import { createConnectionValidationSchema, @@ -45,7 +46,7 @@ const ValidateFormOnSchemaRefresh: React.FC = () => { }; export const ConnectionReplicationTab: React.FC = () => { - const allowAutoDetectSchemaChanges = useFeature(FeatureItem.AllowAutoDetectSchemaChanges); + const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema); const analyticsService = useAnalyticsService(); const connectionService = useConnectionService(); const workspaceId = useCurrentWorkspaceId(); @@ -98,7 +99,7 @@ export const ConnectionReplicationTab: React.FC = () => { workspaceId, mode, allowSubOneHourCronExpressions, - allowAutoDetectSchemaChanges, + allowAutoDetectSchema, connection.operations ); @@ -157,7 +158,7 @@ export const ConnectionReplicationTab: React.FC = () => { workspaceId, mode, allowSubOneHourCronExpressions, - allowAutoDetectSchemaChanges, + allowAutoDetectSchema, connection.operations, connection.catalogDiff?.transforms, connection.syncCatalog.streams, @@ -187,34 +188,36 @@ export const ConnectionReplicationTab: React.FC = () => { validationSchema={createConnectionValidationSchema({ mode, allowSubOneHourCronExpressions, - allowAutoDetectSchemaChanges, + allowAutoDetectSchema, })} onSubmit={onFormSubmit} enableReinitialize > {({ values, isSubmitting, isValid, dirty, resetForm, status }) => ( -
    - - - {status.editControlsVisible && ( - + + + { - resetForm(); - discardRefreshedSchema(); - }} - successMessage={saved && !dirty && } - errorMessage={getErrorMessage(isValid, dirty)} - enableControls={schemaHasBeenRefreshed || dirty} + dirty={dirty || schemaHasBeenRefreshed} /> - )} - + {status.editControlsVisible && ( + { + resetForm(); + discardRefreshedSchema(); + }} + successMessage={saved && !dirty && } + errorMessage={getErrorMessage(isValid, dirty)} + enableControls={schemaHasBeenRefreshed || dirty} + /> + )} + + )} ) : ( diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionSettingsTab.module.scss b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionSettingsTab.module.scss index 432a7e8229a7..672c85635542 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionSettingsTab.module.scss +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionSettingsTab.module.scss @@ -1,5 +1,7 @@ +@use "scss/variables"; + .container { max-width: 647px; margin: 0 auto; - padding-bottom: 10px; + padding-bottom: variables.$spacing-md; } diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionSettingsTab.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionSettingsTab.tsx index 1470872500d7..6d717fbbdde2 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionSettingsTab.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionSettingsTab.tsx @@ -10,12 +10,14 @@ import { useAdvancedModeSetting } from "hooks/services/useAdvancedModeSetting"; import { useDeleteConnection } from "hooks/services/useConnectionHook"; import styles from "./ConnectionSettingsTab.module.scss"; +import { SchemaUpdateNotifications } from "./SchemaUpdateNotifications"; import { StateBlock } from "./StateBlock"; export const ConnectionSettingsTab: React.FC = () => { const { connection } = useConnectionEditService(); const { mutateAsync: deleteConnection } = useDeleteConnection(); const canUpdateDataResidency = useFeature(FeatureItem.AllowChangeDataGeographies); + const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema); const [isAdvancedMode] = useAdvancedModeSetting(); useTrackPage(PageTrackingCodes.CONNECTIONS_ITEM_SETTINGS); @@ -23,6 +25,7 @@ export const ConnectionSettingsTab: React.FC = () => { return (
    + {allowAutoDetectSchema && } {canUpdateDataResidency && } {isAdvancedMode && } diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionStatusTab.module.scss b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionStatusTab.module.scss index f159cbf3993b..aa7c2f7a8086 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionStatusTab.module.scss +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionStatusTab.module.scss @@ -1,5 +1,5 @@ -@use "../../../../scss/colors"; -@use "../../../../scss/variables"; +@use "scss/colors"; +@use "scss/variables"; .title { display: flex; diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaChangesDetected.test.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaChangesDetected.test.tsx index a00e20c6616b..28da1d78aa01 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaChangesDetected.test.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaChangesDetected.test.tsx @@ -22,7 +22,7 @@ jest.doMock("views/Connection/ConnectionForm/components/refreshSourceSchemaWithC })); const TestWrapperWithAutoDetectSchema: React.FC>> = ({ children }) => ( - {children} + {children} ); const renderComponent = () => render(, { wrapper: TestWrapperWithAutoDetectSchema }); @@ -48,7 +48,7 @@ describe("", () => { const { queryByTestId } = renderComponent(); - expect(queryByTestId("schemaChagnesDetected")).toBeFalsy(); + expect(queryByTestId("schemaChangesDetected")).toBeFalsy(); }); it("renders with breaking changes", () => { diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaUpdateNotifications.module.scss b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaUpdateNotifications.module.scss new file mode 100644 index 000000000000..5f9f1aebf5dc --- /dev/null +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaUpdateNotifications.module.scss @@ -0,0 +1,8 @@ +@use "scss/variables"; +@use "scss/colors"; + +.container { + display: flex; + align-items: center; + margin-bottom: variables.$spacing-md; +} diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaUpdateNotifications.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaUpdateNotifications.tsx new file mode 100644 index 000000000000..fb0d25e77b72 --- /dev/null +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/SchemaUpdateNotifications.tsx @@ -0,0 +1,49 @@ +import React from "react"; +import { FormattedMessage, useIntl } from "react-intl"; +import { useAsyncFn } from "react-use"; + +import { ControlLabels } from "components"; +import { Card } from "components/ui/Card"; +import { Switch } from "components/ui/Switch"; +import { ToastType } from "components/ui/Toast"; + +import { useConnectionEditService } from "hooks/services/ConnectionEdit/ConnectionEditService"; +import { useNotificationService } from "hooks/services/Notification"; + +import styles from "./SchemaUpdateNotifications.module.scss"; + +export const SchemaUpdateNotifications: React.FC = () => { + const { formatMessage } = useIntl(); + const { registerNotification } = useNotificationService(); + const { connection, updateConnection, connectionUpdating } = useConnectionEditService(); + const [{ loading }, onChange] = useAsyncFn(async (checked: boolean) => { + try { + await updateConnection({ + connectionId: connection.connectionId, + notifySchemaChanges: checked, + }); + } catch (e) { + registerNotification({ + id: "connection.schemaUpdateNotifications.error", + text: formatMessage({ id: "connection.schemaUpdateNotifications.error" }), + type: ToastType.ERROR, + }); + } + }); + + return ( + + } + message={} + /> + onChange(event.target.checked)} + disabled={connectionUpdating} + loading={loading} + /> + + ); +}; diff --git a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/StatusMainInfo.test.tsx b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/StatusMainInfo.test.tsx index 38ee7fdc94ed..80f22eb9635d 100644 --- a/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/StatusMainInfo.test.tsx +++ b/airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/StatusMainInfo.test.tsx @@ -28,7 +28,7 @@ jest.doMock("views/Connection/ConnectionForm/components/refreshSourceSchemaWithC })); const TestWrapperWithAutoDetectSchema: React.FC>> = ({ children }) => ( - {children} + {children} ); // eslint-disable-next-line @typescript-eslint/no-var-requires diff --git a/airbyte-webapp/src/scss/_z-indices.scss b/airbyte-webapp/src/scss/_z-indices.scss index 04b4b250ca99..71ec0051a4ca 100644 --- a/airbyte-webapp/src/scss/_z-indices.scss +++ b/airbyte-webapp/src/scss/_z-indices.scss @@ -5,3 +5,7 @@ $sidebar: 9999; $panelSplitter: 0; $dropdownMenu: 2; $notification: 20; +$schemaChangesBackdrop: 3; +$schemaChangesBackdropContent: 4; +$switchSliderBefore: 1; +$tableScroll: 1; diff --git a/airbyte-webapp/src/utils/links.ts b/airbyte-webapp/src/utils/links.ts index 369aea1bda52..e36d3f1a9559 100644 --- a/airbyte-webapp/src/utils/links.ts +++ b/airbyte-webapp/src/utils/links.ts @@ -23,6 +23,8 @@ export const links = { statusLink: "https://status.airbyte.io/", tutorialsLink: "https://airbyte.com/tutorials", syncModeLink: `${BASE_DOCS_LINK}/understanding-airbyte/connections`, + sourceDefinedCursorLink: `${BASE_DOCS_LINK}/understanding-airbyte/connections/incremental-deduped-history/#source-defined-cursor`, + sourceDefinedPKLink: `${BASE_DOCS_LINK}/understanding-airbyte/connections/incremental-deduped-history/#source-defined-primary-key`, demoLink: "https://demo.airbyte.io", contactSales: "https://airbyte.com/talk-to-sales", webpageLink: "https://airbyte.com", diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/ConnectionFormFields.module.scss b/airbyte-webapp/src/views/Connection/ConnectionForm/ConnectionFormFields.module.scss index dfd8ac1afa22..f91656e35ca9 100644 --- a/airbyte-webapp/src/views/Connection/ConnectionForm/ConnectionFormFields.module.scss +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/ConnectionFormFields.module.scss @@ -1,9 +1,10 @@ -@use "../../../scss/variables"; +@use "scss/variables"; .formContainer { display: flex; flex-direction: column; gap: variables.$spacing-md; + position: relative; } .readonly { diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/ConnectionFormFields.tsx b/airbyte-webapp/src/views/Connection/ConnectionForm/ConnectionFormFields.tsx index 2add48601f06..6e72cb9d0c6c 100644 --- a/airbyte-webapp/src/views/Connection/ConnectionForm/ConnectionFormFields.tsx +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/ConnectionFormFields.tsx @@ -34,7 +34,7 @@ interface ConnectionFormFieldsProps { } export const ConnectionFormFields: React.FC = ({ values, isSubmitting, dirty }) => { - const allowAutoDetectSchemaChanges = useFeature(FeatureItem.AllowAutoDetectSchemaChanges); + const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema); const { mode, formId } = useConnectionFormService(); const { formatMessage } = useIntl(); @@ -59,7 +59,7 @@ export const ConnectionFormFields: React.FC = ({ valu
    }> - {allowAutoDetectSchemaChanges && ( + {allowAutoDetectSchema && ( )}
    diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/components/OctaviaRedFlag.tsx b/airbyte-webapp/src/views/Connection/ConnectionForm/components/OctaviaRedFlag.tsx new file mode 100644 index 000000000000..d569d90b6b92 --- /dev/null +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/components/OctaviaRedFlag.tsx @@ -0,0 +1,59 @@ +export const OctaviaRedFlag: React.FC = () => ( + + + + + + + + + + + + + + + + + + +); diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/components/OctaviaYellowFlag.tsx b/airbyte-webapp/src/views/Connection/ConnectionForm/components/OctaviaYellowFlag.tsx new file mode 100644 index 000000000000..dc6180e5bc4a --- /dev/null +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/components/OctaviaYellowFlag.tsx @@ -0,0 +1,61 @@ +export const OctaviaYellowFlag: React.FC = () => { + return ( + + + + + + + + + + + + + + + + + + + ); +}; diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangeBackdrop.module.scss b/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangeBackdrop.module.scss new file mode 100644 index 000000000000..a7c545e1ac0a --- /dev/null +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangeBackdrop.module.scss @@ -0,0 +1,44 @@ +@use "scss/colors"; +@use "scss/variables"; +@use "scss/_z-indices"; + +%cover { + width: 100%; + height: 100%; +} + +.schemaChangeBackdropContainer { + @extend %cover; + + position: relative; + + .backdrop { + @extend %cover; + + position: absolute; + background: linear-gradient(180deg, rgba(colors.$grey-50, 0.5) 0%, colors.$white 92.54%); + z-index: z-indices.$schemaChangesBackdrop; + border-radius: variables.$border-radius-lg; + display: flex; + flex-direction: column; + align-items: center; + } + + .contentContainer { + @extend %cover; + + position: fixed; + margin-top: 120px; + display: flex; + z-index: z-indices.$schemaChangesBackdropContent; + width: variables.$width-modal-sm; + max-width: 40%; + flex-direction: column; + align-items: center; + } +} + +.text { + margin-top: variables.$spacing-lg; + color: colors.$dark-blue-400; +} diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangeBackdrop.tsx b/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangeBackdrop.tsx new file mode 100644 index 000000000000..1b6e048f52c7 --- /dev/null +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangeBackdrop.tsx @@ -0,0 +1,45 @@ +import { useMemo } from "react"; +import { FormattedMessage } from "react-intl"; + +import { Text } from "components/ui/Text"; + +import { useSchemaChanges } from "hooks/connection/useSchemaChanges"; +import { useConnectionEditService } from "hooks/services/ConnectionEdit/ConnectionEditService"; +import { FeatureItem, useFeature } from "hooks/services/Feature"; + +import { OctaviaRedFlag } from "./OctaviaRedFlag"; +import { OctaviaYellowFlag } from "./OctaviaYellowFlag"; +import styles from "./SchemaChangeBackdrop.module.scss"; + +export const SchemaChangeBackdrop: React.FC> = ({ children }) => { + const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema); + + const { + schemaHasBeenRefreshed, + connection: { schemaChange }, + } = useConnectionEditService(); + + const { hasBreakingSchemaChange, hasNonBreakingSchemaChange } = useSchemaChanges(schemaChange); + + const schemaChangeImage = useMemo(() => { + return hasBreakingSchemaChange ? : hasNonBreakingSchemaChange ? : null; + }, [hasBreakingSchemaChange, hasNonBreakingSchemaChange]); + + if (!allowAutoDetectSchema || (!hasBreakingSchemaChange && !hasNonBreakingSchemaChange) || schemaHasBeenRefreshed) { + return <>{children}; + } + + return ( +
    +
    +
    +
    {schemaChangeImage}
    + + + +
    +
    + {children} +
    + ); +}; diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangesBackdrop.test.tsx b/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangesBackdrop.test.tsx new file mode 100644 index 000000000000..fbf60bd6acec --- /dev/null +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/components/SchemaChangesBackdrop.test.tsx @@ -0,0 +1,86 @@ +import { render } from "@testing-library/react"; +import userEvent from "@testing-library/user-event"; +import { mockConnection, TestWrapper } from "test-utils/testutils"; + +import { SchemaChange } from "core/request/AirbyteClient"; +import { FeatureItem } from "hooks/services/Feature"; +const mockUseConnectionEditService = jest.fn(); + +jest.doMock("hooks/services/ConnectionEdit/ConnectionEditService", () => ({ + useConnectionEditService: mockUseConnectionEditService, +})); + +const TestWrapperWithAutoDetectSchema: React.FC>> = ({ children }) => ( + {children} +); + +const buttonSpy = jest.fn(); + +const renderComponent = () => + render( + + + , + { wrapper: TestWrapperWithAutoDetectSchema } + ); + +// eslint-disable-next-line @typescript-eslint/no-var-requires +const { SchemaChangeBackdrop } = require("./SchemaChangeBackdrop"); + +describe("SchemaChangesBackdrop", () => { + it("renders with breaking changes and prevents background interaction", () => { + mockUseConnectionEditService.mockReturnValue({ + connection: { mockConnection, schemaChange: SchemaChange.breaking }, + schemaHasBeenRefreshed: false, + schemaRefreshing: false, + }); + + const { getByTestId } = renderComponent(); + + expect(getByTestId("schemaChangesBackdrop")).toMatchSnapshot(); + userEvent.click(getByTestId("bg-button")); + expect(buttonSpy).not.toHaveBeenCalled(); + }); + it("renders if there are non-breaking changes and prevents background interaction", () => { + mockUseConnectionEditService.mockReturnValue({ + connection: { mockConnection, schemaChange: SchemaChange.non_breaking }, + schemaHasBeenRefreshed: false, + schemaRefreshing: false, + }); + + const { getByTestId } = renderComponent(); + + expect(getByTestId("schemaChangesBackdrop")).toMatchSnapshot(); + userEvent.click(getByTestId("bg-button")); + expect(buttonSpy).not.toHaveBeenCalled(); + }); + it("does not render if there are no changes", () => { + mockUseConnectionEditService.mockReturnValue({ + connection: { mockConnection, schemaChange: SchemaChange.no_change }, + schemaHasBeenRefreshed: false, + schemaRefreshing: false, + }); + + const { queryByTestId, getByTestId } = renderComponent(); + + expect(queryByTestId("schemaChangesBackdrop")).toBeFalsy(); + + userEvent.click(getByTestId("bg-button")); + expect(buttonSpy).not.toHaveBeenCalled(); + }); + it("does not render if schema has been refreshed", () => { + mockUseConnectionEditService.mockReturnValue({ + connection: mockConnection, + schemaHasBeenRefreshed: true, + schemaRefreshing: false, + }); + + const { queryByTestId, getByTestId } = renderComponent(); + expect(queryByTestId("schemaChangesBackdrop")).toBeFalsy(); + + userEvent.click(getByTestId("bg-button")); + expect(buttonSpy).not.toHaveBeenCalled(); + }); +}); diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/components/__snapshots__/SchemaChangesBackdrop.test.tsx.snap b/airbyte-webapp/src/views/Connection/ConnectionForm/components/__snapshots__/SchemaChangesBackdrop.test.tsx.snap new file mode 100644 index 000000000000..7cf429a873fc --- /dev/null +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/components/__snapshots__/SchemaChangesBackdrop.test.tsx.snap @@ -0,0 +1,195 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`SchemaChangesBackdrop renders if there are non-breaking changes and prevents background interaction 1`] = ` +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + +
    +

    + Please review the schema updates before making changes to the connection +

    +
    +
    + +
    +`; + +exports[`SchemaChangesBackdrop renders with breaking changes and prevents background interaction 1`] = ` +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + +
    +

    + Please review the schema updates before making changes to the connection +

    +
    +
    + +
    +`; diff --git a/airbyte-webapp/src/views/Connection/ConnectionForm/formConfig.tsx b/airbyte-webapp/src/views/Connection/ConnectionForm/formConfig.tsx index 8cf42b41670b..e906813606be 100644 --- a/airbyte-webapp/src/views/Connection/ConnectionForm/formConfig.tsx +++ b/airbyte-webapp/src/views/Connection/ConnectionForm/formConfig.tsx @@ -83,13 +83,13 @@ export function useDefaultTransformation(): OperationCreate { interface CreateConnectionValidationSchemaArgs { allowSubOneHourCronExpressions: boolean; mode: ConnectionFormMode; - allowAutoDetectSchemaChanges: boolean; + allowAutoDetectSchema: boolean; } export const createConnectionValidationSchema = ({ mode, allowSubOneHourCronExpressions, - allowAutoDetectSchemaChanges, + allowAutoDetectSchema, }: CreateConnectionValidationSchemaArgs) => yup .object({ @@ -131,7 +131,7 @@ export const createConnectionValidationSchema = ({ .defined("form.empty.error"), }); }), - nonBreakingChangesPreference: allowAutoDetectSchemaChanges + nonBreakingChangesPreference: allowAutoDetectSchema ? yup.mixed().oneOf(Object.values(NonBreakingChangesPreference)).required("form.empty.error") : yup.mixed().notRequired(), diff --git a/airbyte-workers/Dockerfile b/airbyte-workers/Dockerfile index 8a9c1c739081..99063f474e58 100644 --- a/airbyte-workers/Dockerfile +++ b/airbyte-workers/Dockerfile @@ -10,7 +10,7 @@ RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/s && chmod +x kubectl && mv kubectl /usr/local/bin/ # Don't change this manually. Bump version expects to make moves based on this string -ARG VERSION=0.40.25 +ARG VERSION=0.40.26 ENV APPLICATION airbyte-workers ENV VERSION ${VERSION} diff --git a/build.gradle b/build.gradle index 5a062ee276b0..8c30547fc84c 100644 --- a/build.gradle +++ b/build.gradle @@ -128,6 +128,7 @@ def createSpotlessTarget = { pattern -> 'airbyte-webapp', // The webapp module uses its own auto-formatter, so spotless is not necessary here 'airbyte-webapp-e2e-tests', // This module also uses its own auto-formatter 'airbyte-connector-builder-server/connector_builder/generated', // autogenerated code doesn't need to be formatted + '**/integration_tests/expected_records.json', // TODO: Revisit with https://github.com/airbytehq/airbyte/issues/20569 ] if (System.getenv().containsKey("SUB_BUILD")) { diff --git a/charts/airbyte-bootloader/Chart.yaml b/charts/airbyte-bootloader/Chart.yaml index 7b29aeae0379..0cb5b588a050 100644 --- a/charts/airbyte-bootloader/Chart.yaml +++ b/charts/airbyte-bootloader/Chart.yaml @@ -22,7 +22,7 @@ version: "0.43.3" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.40.25" +appVersion: "0.40.26" dependencies: - name: common diff --git a/charts/airbyte-connector-builder-server/Chart.yaml b/charts/airbyte-connector-builder-server/Chart.yaml index f33d0839263d..c64f4eca2910 100644 --- a/charts/airbyte-connector-builder-server/Chart.yaml +++ b/charts/airbyte-connector-builder-server/Chart.yaml @@ -21,7 +21,7 @@ version: "0.43.3" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.40.25" +appVersion: "0.40.26" dependencies: - name: common diff --git a/charts/airbyte-cron/Chart.yaml b/charts/airbyte-cron/Chart.yaml index e01dfbdf8187..381b967d3d31 100644 --- a/charts/airbyte-cron/Chart.yaml +++ b/charts/airbyte-cron/Chart.yaml @@ -21,7 +21,7 @@ version: 0.1.1 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.40.25" +appVersion: "0.40.26" dependencies: - name: common diff --git a/charts/airbyte-server/Chart.yaml b/charts/airbyte-server/Chart.yaml index 29cf52438ece..68b3190f789f 100644 --- a/charts/airbyte-server/Chart.yaml +++ b/charts/airbyte-server/Chart.yaml @@ -21,7 +21,7 @@ version: "0.43.3" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.40.25" +appVersion: "0.40.26" dependencies: - name: common diff --git a/charts/airbyte-temporal/Chart.yaml b/charts/airbyte-temporal/Chart.yaml index 9de1c0a53268..55ef02d98341 100644 --- a/charts/airbyte-temporal/Chart.yaml +++ b/charts/airbyte-temporal/Chart.yaml @@ -22,7 +22,7 @@ version: "0.43.3" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.40.25" +appVersion: "0.40.26" dependencies: - name: common diff --git a/charts/airbyte-webapp/Chart.yaml b/charts/airbyte-webapp/Chart.yaml index 565868fc8f8b..c28bb59ddd4e 100644 --- a/charts/airbyte-webapp/Chart.yaml +++ b/charts/airbyte-webapp/Chart.yaml @@ -22,7 +22,7 @@ version: "0.43.3" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.40.25" +appVersion: "0.40.26" dependencies: - name: common diff --git a/charts/airbyte-worker/Chart.yaml b/charts/airbyte-worker/Chart.yaml index 338382c831ff..7d984701a838 100644 --- a/charts/airbyte-worker/Chart.yaml +++ b/charts/airbyte-worker/Chart.yaml @@ -22,7 +22,7 @@ version: "0.43.3" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.40.25" +appVersion: "0.40.26" dependencies: - name: common diff --git a/charts/airbyte/Chart.yaml b/charts/airbyte/Chart.yaml index 09c84fc69635..aa60439c5204 100644 --- a/charts/airbyte/Chart.yaml +++ b/charts/airbyte/Chart.yaml @@ -21,7 +21,7 @@ version: 0.43.3 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.40.25" +appVersion: "0.40.26" dependencies: - name: common diff --git a/charts/airbyte/README.md b/charts/airbyte/README.md index e85284bd1c4d..aa5c4866e469 100644 --- a/charts/airbyte/README.md +++ b/charts/airbyte/README.md @@ -250,7 +250,7 @@ Helm chart to deploy airbyte | worker.hpa.enabled | bool | `false` | | | worker.image.pullPolicy | string | `"IfNotPresent"` | | | worker.image.repository | string | `"airbyte/worker"` | | -| worker.image.tag | string | `"0.40.25"` | | +| worker.image.tag | string | `"0.40.26"` | | | worker.livenessProbe.enabled | bool | `true` | | | worker.livenessProbe.failureThreshold | int | `3` | | | worker.livenessProbe.initialDelaySeconds | int | `30` | | diff --git a/docs/cloud/dbt-cloud-integration.md b/docs/cloud/dbt-cloud-integration.md index 0d27fb65b53c..5930de75bac2 100644 --- a/docs/cloud/dbt-cloud-integration.md +++ b/docs/cloud/dbt-cloud-integration.md @@ -2,11 +2,12 @@ ## Step 1: Generate a service token -Generate a [service token](https://docs.getdbt.com/docs/dbt-cloud-apis/service-tokens#generating-service-account-tokens) for your dbt Cloud transformation. +Generate a [service token](https://docs.getdbt.com/docs/dbt-cloud-apis/service-tokens#generating-service-account-tokens) for your dbt Cloud transformation. :::note -To use the dbt Cloud integration, you must use a paid version of dbt Cloud. +* To use the dbt Cloud integration, you must use a paid version of dbt Cloud. +* The service token must have Member, Job Admin, or Account Admin permissions. ::: diff --git a/docs/deploying-airbyte/on-digitalocean-droplet.md b/docs/deploying-airbyte/on-digitalocean-droplet.md index 98d8fc9ef7d8..73f072b4e32f 100644 --- a/docs/deploying-airbyte/on-digitalocean-droplet.md +++ b/docs/deploying-airbyte/on-digitalocean-droplet.md @@ -48,9 +48,7 @@ To install and start Airbyte : docker-compose up -d ``` -2. Verify that Airbyte is running: - - #todo -add the ssh tunnel command +2. Verify the connection by visiting [http://localhost:8000](http://localhost:8000) in your browser. ## Troubleshooting diff --git a/docs/integrations/sources/braze.md b/docs/integrations/sources/braze.md new file mode 100644 index 000000000000..49dddd08fa27 --- /dev/null +++ b/docs/integrations/sources/braze.md @@ -0,0 +1,56 @@ +# Braze + +This page contains the setup guide and reference information for the Braze source connector. + +## Prerequisites + +It is required to have an account on Braze to provide us with `URL` and `Rest API Key` during set up. +- `Rest API Key` could be found on Braze Dashboard -> Developer Console tab -> API Settings -> Rest API Keys +- `URL` could be found on Braze Dashboard -> Manage Settings -> Settings tab -> `Your App name` -> SDK Endpoint + +## Set up the Braze connector in Airbyte + +### For Airbyte Cloud: + +1. [Log into your Airbyte Cloud](https://cloud.airbyte.io/workspaces) account. +2. In the left navigation bar, click **Sources**. In the top-right corner, click **+new source**. +3. On the Set up the source page, enter the name for the Braze connector and select **Braze** from the Source type dropdown. +4. Fill in your `URL`, `Rest API Key` and `Start date` and then click **Set up source**. + +## Supported sync modes + +The Braze source connector supports the following [ sync modes](https://docs.airbyte.com/cloud/core-concepts#connection-sync-modes): + +- Full Refresh | Overwrite +- Incremental Sync | Append + +## Supported Streams + +- [campaigns](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#f3b0b3ef-04fb-4a31-8570-e6ad88dacb18) +- [campaigns_analytics](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#c07b5ebd-0246-471e-b154-416d63ae28a1) +- [canvases](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#e6c150d7-fceb-4b10-91e2-a9ca4d5806d1) +- [canvases_analytics](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#0fd61e93-7edf-4d87-a8dc-052420aefb73) +- [events](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#93ecd8a5-305d-4b72-ae33-2d74983255c1) +- [events_analytics](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#0bd1ab63-d1a5-4301-8d17-246cf24a178c) +- [kpi_daily_new_users](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#07756c39-cfa0-40a0-8101-03f8791cec01) +- [kpi_daily_active_users](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#90a64560-65aa-4f71-a8ef-1edf49321986) +- [kpi_daily_app_uninstalls](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#59c4d592-3e77-42f8-8ff1-d5d250acbeae) +- [cards](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#9fa7a3bc-4a02-4de2-bc4c-8f111750665e) +- [cards_analytics](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#9cdc3b1e-641e-4d62-b9e8-42d04ee9d4d8) +- [segments](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#1349e6f4-3ce7-4e60-b3e9-951c99c0993f) +- [segments_analytics](https://documenter.getpostman.com/view/4689407/SVYrsdsG?version=latest#62d9d142-cdec-4aea-a287-c13efea7415e) + +## Performance considerations + +Rate limits differ depending on stream. + +Rate limits table: https://www.braze.com/docs/api/api_limits/#rate-limits-by-request-type + + +## Changelog + +| Version | Date | Pull Request | Subject | +|:--------|:-----------|:----------------------------------------------------------|:-----------------------------------| +| 0.1.3 | 2022-12-15 | [20520](https://github.com/airbytehq/airbyte/pull/20520) | The Braze connector born | + + diff --git a/docs/integrations/sources/harvest.md b/docs/integrations/sources/harvest.md index a912ec1195b6..60c64f76da4e 100644 --- a/docs/integrations/sources/harvest.md +++ b/docs/integrations/sources/harvest.md @@ -78,7 +78,8 @@ The connector is restricted by the [Harvest rate limits](https://help.getharvest ## Changelog | Version | Date | Pull Request | Subject | -| :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------- | +|:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------| +| 0.1.12 | 2022-12-16 | [20572](https://github.com/airbytehq/airbyte/pull/20572) | Introduce replication end date | | 0.1.11 | 2022-09-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream states. | | 0.1.10 | 2022-08-08 | [15221](https://github.com/airbytehq/airbyte/pull/15221) | Added `parent_id` for all streams which have parent stream | | 0.1.9 | 2022-08-04 | [15312](https://github.com/airbytehq/airbyte/pull/15312) | Fix `started_time` and `ended_time` format schema error and updated report slicing | diff --git a/docs/integrations/sources/jira.md b/docs/integrations/sources/jira.md index 719ef8ee1d8e..423d4cef658c 100644 --- a/docs/integrations/sources/jira.md +++ b/docs/integrations/sources/jira.md @@ -1,31 +1,59 @@ # Jira -## Features +This page contains the setup guide and reference information for the Jira source connector. -| Feature | Supported? | | -| :--- | :--- | :--- | -| Full Refresh Sync | Yes | | -| Incremental Sync | Yes | Only Issues, BoardIssues, Epics, IssueComments, IssueWorklogs, PullRequests, SprintIssues | -| Replicate Incremental Deletes | Coming soon | | -| SSL connection | Yes | | +## Prerequisites + +- API Token +- Domain +- Email + +## Setup guide + +### Step 1: Set up Jira + +1. To get access to the Jira API you need to create an API token, please follow the instructions in this [documentation](https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/). + +### Step 2: Set up the Jira connector in Airbyte + +**For Airbyte Cloud:** + +1. [Log into your Airbyte Cloud](https://cloud.airbyte.io/workspaces) account. +2. In the left navigation bar, click **Sources**. In the top-right corner, click **+ new source**. +3. On the source setup page, select **Jira** from the Source type dropdown and enter a name for this connector. +4. Enter the **API Token** that you have created. +5. Enter the **Domain** for your Jira account, e.g. `airbyteio.atlassian.net`. +6. Enter the **Email** for your Jira account. +7. Enter the list of **Projects (Optional)** for which you need to replicate data, or leave it empty if you want to replicate data for all projects. +8. Enter the **Start Date (Optional)** from which you'd like to replicate data for Jira in the format YYYY-MM-DDTHH:MM:SSZ. All data generated after this date will be replicated. Note that it will be used only in the following streams: BoardIssues, IssueComments, IssueProperties, IssueRemoteLinks, IssueVotes, IssueWatchers, IssueWorklogs, Issues, PullRequests, SprintIssues. +9. Toggle **Expand Issue Changelog** allows you to get a list of recent updates to every issue in the Issues stream. +10. Toggle **Render Issue Fields** allows returning field values rendered in HTML format in the Issues stream. +11. Toggle **Enable Experimental Streams** enables experimental PullRequests stream. + +## Supported sync modes + +The Jira source connector supports the following [sync modes](https://docs.airbyte.com/cloud/core-concepts#connection-sync-modes): + +- [Full Refresh - Overwrite](https://docs.airbyte.com/understanding-airbyte/glossary#full-refresh-sync) +- [Full Refresh - Append](https://docs.airbyte.com/understanding-airbyte/connections/full-refresh-append) +- [Incremental - Append](https://docs.airbyte.com/understanding-airbyte/connections/incremental-append) +- [Incremental - Deduped History](https://docs.airbyte.com/understanding-airbyte/connections/incremental-deduped-history) ## Troubleshooting Check out common troubleshooting issues for the Jira connector on our Discourse [here](https://discuss.airbyte.io/tags/c/connector/11/source-jira). -## Supported Tables +## Supported Streams -This source is capable of syncing the following tables and their data: +This connector outputs the following full refresh streams: * [Application roles](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-application-roles/#api-rest-api-3-applicationrole-get) * [Avatars](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-avatars/#api-rest-api-3-avatar-type-system-get) +* [Boards](https://developer.atlassian.com/cloud/jira/software/rest/api-group-other-operations/#api-agile-1-0-board-get) * [Dashboards](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-dashboards/#api-rest-api-3-dashboard-get) * [Filters](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-filters/#api-rest-api-3-filter-search-get) -* [Filters](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-filter-sharing/#api-rest-api-3-filter-id-permission-get) * [Filter sharing](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-filter-sharing/#api-rest-api-3-filter-id-permission-get) * [Groups](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-groups/#api-rest-api-3-groups-picker-get) -* [Issues](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-get) -* [Issue comments](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-get) * [Issue fields](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-fields/#api-rest-api-3-field-get) * [Issue field configurations](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-field-configurations/#api-rest-api-3-fieldconfiguration-get) * [Issue custom field contexts](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-custom-field-contexts/#api-rest-api-3-field-fieldid-context-get) @@ -35,13 +63,12 @@ This source is capable of syncing the following tables and their data: * [Issue priorities](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-priorities/#api-rest-api-3-priority-get) * [Issue properties](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-properties/#api-rest-api-3-issue-issueidorkey-properties-propertykey-get) * [Issue remote links](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-remote-links/#api-rest-api-3-issue-issueidorkey-remotelink-get) -* [Issue resolutions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-resolutions/#api-rest-api-3-resolution-get) +* [Issue resolutions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-resolutions/#api-rest-api-3-resolution-search-get) * [Issue security schemes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-security-schemes/#api-rest-api-3-issuesecurityschemes-get) * [Issue type schemes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-type-schemes/#api-rest-api-3-issuetypescheme-get) * [Issue type screen schemes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-type-screen-schemes/#api-rest-api-3-issuetypescreenscheme-get) * [Issue votes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-votes/#api-group-issue-votes) * [Issue watchers](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-watchers/#api-rest-api-3-issue-issueidorkey-watchers-get) -* [Issue worklogs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-worklogs/#api-rest-api-3-issue-issueidorkey-worklog-get) * [Jira settings](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-jira-settings/#api-rest-api-3-application-properties-get) * [Labels](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-labels/#api-rest-api-3-label-get) * [Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-permissions/#api-rest-api-3-mypermissions-get) @@ -55,17 +82,26 @@ This source is capable of syncing the following tables and their data: * [Project types](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-types/#api-rest-api-3-project-type-get) * [Project versions](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-versions/#api-rest-api-3-project-projectidorkey-version-get) * [Screens](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screens/#api-rest-api-3-screens-get) -* [Screen tabs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screen-tabs/) +* [Screen tabs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screen-tabs/#api-rest-api-3-screens-screenid-tabs-get) * [Screen tab fields](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screen-tab-fields/#api-rest-api-3-screens-screenid-tabs-tabid-fields-get) * [Screen schemes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-screen-schemes/#api-rest-api-3-screenscheme-get) +* [Sprints](https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#api-rest-agile-1-0-board-boardid-sprint-get) * [Time tracking](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-time-tracking/#api-rest-api-3-configuration-timetracking-list-get) * [Users](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-user-search/#api-rest-api-3-user-search-get) -* [UsersGroupsDetailed](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-users/#api-rest-api-3-user-groups-get) +* [UsersGroupsDetailed](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-users/#api-rest-api-3-user-get) * [Workflows](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflows/#api-rest-api-3-workflow-search-get) * [Workflow schemes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflow-schemes/#api-rest-api-3-workflowscheme-get) * [Workflow statuses](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflow-statuses/#api-rest-api-3-status-get) * [Workflow status categories](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflow-status-categories/#api-rest-api-3-statuscategory-get) +This connector outputs the following incremental streams: + +* [Board issues](https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#api-rest-agile-1-0-board-boardid-issue-get) +* [Issue comments](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-get) +* [Issue worklogs](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-worklogs/#api-rest-api-3-issue-issueidorkey-worklog-get) +* [Issues](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-get) +* [Sprint issues](https://developer.atlassian.com/cloud/jira/software/rest/api-group-sprint/#api-rest-agile-1-0-sprint-sprintid-issue-get) + If there are more endpoints you'd like Airbyte to support, please [create an issue.](https://github.com/airbytehq/airbyte/issues/new/choose) ## Experimental Tables @@ -78,15 +114,9 @@ or disallow these tables to be selected when configuring a connection. * Pull Requests (currently only GitHub PRs are supported) -## Getting Started \(Airbyte Open-Source / Airbyte Cloud\) - -### Requirements - -* Jira API Token -* Jira Email -* Jira Domain +## Troubleshooting -Please follow the [Jira confluence for generating an API token](https://confluence.atlassian.com/cloud/api-tokens-938839638.html). +Check out common troubleshooting issues for the Jira connector on our Discourse [here](https://discuss.airbyte.io/tags/c/connector/11/source-jira). ## Rate Limiting & Performance @@ -96,10 +126,11 @@ The Jira connector should not run into Jira API limitations under normal usage. | Version | Date | Pull Request | Subject | |:--------|:-----------|:------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------| -| 0.3.0 | 2022-11-03 | [\#18901](hhttps://github.com/airbytehq/airbyte/pull/18901) | Adds UserGroupsDetailed schema, fix Incremental normalization, add Incremental support for IssueComments, IssueWorklogs | -| 0.2.23 | 2022-10-28 | [\#18505](hhttps://github.com/airbytehq/airbyte/pull/18505) | Correcting `max_results` bug introduced in connector stream | -| 0.2.22 | 2022-10-03 | [\#16944](hhttps://github.com/airbytehq/airbyte/pull/16944) | Adds support for `max_results` to `users` stream | -| 0.2.21 | 2022-07-28 | [\#15135](hhttps://github.com/airbytehq/airbyte/pull/15135) | Adds components to `fields` object on `issues` stream | +| 0.3.1 | 2022-12-14 | [\#20128](https://github.com/airbytehq/airbyte/pull/20128) | Improved code to become beta | +| 0.3.0 | 2022-11-03 | [\#18901](https://github.com/airbytehq/airbyte/pull/18901) | Adds UserGroupsDetailed schema, fix Incremental normalization, add Incremental support for IssueComments, IssueWorklogs | +| 0.2.23 | 2022-10-28 | [\#18505](https://github.com/airbytehq/airbyte/pull/18505) | Correcting `max_results` bug introduced in connector stream | +| 0.2.22 | 2022-10-03 | [\#16944](https://github.com/airbytehq/airbyte/pull/16944) | Adds support for `max_results` to `users` stream | +| 0.2.21 | 2022-07-28 | [\#15135](https://github.com/airbytehq/airbyte/pull/15135) | Adds components to `fields` object on `issues` stream | | 0.2.20 | 2022-05-25 | [\#13202](https://github.com/airbytehq/airbyte/pull/13202) | Adds resolutiondate to `fields` object on `issues` stream | | 0.2.19 | 2022-05-04 | [\#10835](https://github.com/airbytehq/airbyte/pull/10835) | Change description for array fields | | 0.2.18 | 2021-12-23 | [\#7378](https://github.com/airbytehq/airbyte/pull/7378) | Adds experimental endpoint Pull Request | diff --git a/docs/integrations/sources/posthog.md b/docs/integrations/sources/posthog.md index 6a5379aee46e..e3f723670957 100644 --- a/docs/integrations/sources/posthog.md +++ b/docs/integrations/sources/posthog.md @@ -1,65 +1,63 @@ # PostHog -## Sync overview +This page contains the setup guide and reference information for the PostHog source connector. -This source can sync data for the [PostHog API](https://posthog.com/docs/api/overview). It supports both Full Refresh and Incremental syncs. You can choose if this connector will copy only the new or updated data, or all rows in the tables and columns you set up for replication, every time a sync is run. +## Prerequisites -### Output schema +* api_key - obtain Private API Key for your account following these [steps](https://posthog.com/docs/api/overview#how-to-obtain-a-personal-api-key) +* base_url - 'https://app.posthog.com' by default, but it can be different if self-hosted posthog instances is used -This Source is capable of syncing the following core Streams: +## Setup guide +### Step 1: Set up PostHog -* [Annotations](https://posthog.com/docs/api/annotations) \(Incremental\) +* PostHog Account + +## Step 2: Set up the PostHog connector in Airbyte + +### For Airbyte Cloud: + +1. [Log into your Airbyte Cloud](https://cloud.airbyte.io/workspaces) account. +2. In the left navigation bar, click **Sources**. In the top-right corner, click **+new source**. +3. On the Set up the source page, enter the name for the PostHog connector and select **PostHog** from the Source type dropdown. +4. Enter your `apikey`. +5. Enter your `start_date`. +6. Change default `base_url` if self-hosted posthog instances is used +7. Click **Set up source**. + +### For Airbyte OSS: + +1. Navigate to the Airbyte Open Source dashboard. +2. Set the name for your source. +3. Enter your `api_key`. +4. Enter your `start_date`. +5. Change default `base_url` if self-hosted posthog instances is used +6. Click **Set up source**. + +## Supported streams and sync modes + +* [Projects](https://posthog.com/docs/api/projects) +* [Annotations](https://posthog.com/docs/api/annotations) * [Cohorts](https://posthog.com/docs/api/cohorts) * [Events](https://posthog.com/docs/api/events) \(Incremental\) * [FeatureFlags](https://posthog.com/docs/api/feature-flags) * [Insights](https://posthog.com/docs/api/insights) -* [InsightsPath](https://posthog.com/docs/api/insights) -* [InsightsSessions](https://posthog.com/docs/api/insights) * [Persons](https://posthog.com/docs/api/people) -* [Trends](https://posthog.com/docs/api/insights) - -### Data type mapping - -| Integration Type | Airbyte Type | Notes | -| :--- | :--- | :--- | -| `string` | `string` | | -| `number` | `number` | | -| `array` | `array` | | -| `object` | `object` | | - -### Features - -| Feature | Supported?\(Yes/No\) | Notes | -| :--- | :--- | :--- | -| Full Refresh Sync | Yes | | -| Incremental Sync | Yes | | -| Namespaces | No | | ### Performance considerations The PostHog API doesn't have any known request limitation. - Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see any rate limit issues that are not automatically retried successfully. -## Getting started - -### Requirements - -* PostHog Personal API Key - -### Setup guide - -Please follow these [steps](https://posthog.com/docs/api/overview#how-to-obtain-a-personal-api-key) to obtain Private API Key for your account. - ## Changelog -| Version | Date | Pull Request | Subject | -| :--- | :--- | :--- | :--- | -| 0.1.7 | 2022-07-26 | [14585](https://github.com/airbytehq/airbyte/pull/14585) | Add missing 'properties' field to event attributes | -| 0.1.6 | 2022-01-20 | [8617](https://github.com/airbytehq/airbyte/pull/8617) | Update connector fields title/description | -| 0.1.5 | 2021-12-24 | [9082](https://github.com/airbytehq/airbyte/pull/9082) | Remove obsolete session_events and insights streams | -| 0.1.4 | 2021-09-14 | [6058](https://github.com/airbytehq/airbyte/pull/6058) | Support self-hosted posthog instances | -| 0.1.3 | 2021-07-20 | [4001](https://github.com/airbytehq/airbyte/pull/4001) | Incremental streams read only relevant pages | -| 0.1.2 | 2021-07-15 | [4692](https://github.com/airbytehq/airbyte/pull/4692) | Use account information for checking the connection | -| 0.1.1 | 2021-07-05 | [4539](https://github.com/airbytehq/airbyte/pull/4539) | Add `AIRBYTE_ENTRYPOINT` env variable for kubernetes support | -| 0.1.0 | 2021-06-08 | [3768](https://github.com/airbytehq/airbyte/pull/3768) | Initial Release | +| Version | Date | Pull Request | Subject | +|:--------|:-----------| :--- |:-------------------------------------------------------------------------------------------------------------------| +| 0.1.8 | 2022-11-11 | [18993](https://github.com/airbytehq/airbyte/pull/18993) | connector migrated to low-code, added projects,insights streams, added project based slicing for all other streams | +| 0.1.7 | 2022-07-26 | [14585](https://github.com/airbytehq/airbyte/pull/14585) | Add missing 'properties' field to event attributes | +| 0.1.6 | 2022-01-20 | [8617](https://github.com/airbytehq/airbyte/pull/8617) | Update connector fields title/description | +| 0.1.5 | 2021-12-24 | [9082](https://github.com/airbytehq/airbyte/pull/9082) | Remove obsolete session_events and insights streams | +| 0.1.4 | 2021-09-14 | [6058](https://github.com/airbytehq/airbyte/pull/6058) | Support self-hosted posthog instances | +| 0.1.3 | 2021-07-20 | [4001](https://github.com/airbytehq/airbyte/pull/4001) | Incremental streams read only relevant pages | +| 0.1.2 | 2021-07-15 | [4692](https://github.com/airbytehq/airbyte/pull/4692) | Use account information for checking the connection | +| 0.1.1 | 2021-07-05 | [4539](https://github.com/airbytehq/airbyte/pull/4539) | Add `AIRBYTE_ENTRYPOINT` env variable for kubernetes support | +| 0.1.0 | 2021-06-08 | [3768](https://github.com/airbytehq/airbyte/pull/3768) | Initial Release | diff --git a/docs/integrations/sources/retently.md b/docs/integrations/sources/retently.md index d69ec17ef93f..d0c5a393d6ec 100644 --- a/docs/integrations/sources/retently.md +++ b/docs/integrations/sources/retently.md @@ -41,6 +41,7 @@ OAuth application is [here](https://app.retently.com/settings/oauth). | Version | Date | Pull Request | Subject | | :--- | :--- | :--- | :--- | -| 0.1.2 | 2021-12-28 | [9045](https://github.com/airbytehq/airbyte/pull/9045) | Update titles and descriptions | -| 0.1.1 | 2021-12-06 | [8043](https://github.com/airbytehq/airbyte/pull/8043) | 🎉 Source Retently: add OAuth 2.0 | -| 0.1.0 | 2021-11-02 | [6966](https://github.com/airbytehq/airbyte/pull/6966) | 🎉 New Source: Retently | +| 0.1.3 | 2022-11-15 | [19456](https://github.com/airbytehq/airbyte/pull/19456) | Add campaign, feedback, outbox and templates streams | +| 0.1.2 | 2021-12-28 | [9045](https://github.com/airbytehq/airbyte/pull/9045) | Update titles and descriptions | +| 0.1.1 | 2021-12-06 | [8043](https://github.com/airbytehq/airbyte/pull/8043) | 🎉 Source Retently: add OAuth 2.0 | +| 0.1.0 | 2021-11-02 | [6966](https://github.com/airbytehq/airbyte/pull/6966) | 🎉 New Source: Retently | diff --git a/docs/integrations/sources/square.md b/docs/integrations/sources/square.md index ee964435d3e5..f460aa67b22f 100644 --- a/docs/integrations/sources/square.md +++ b/docs/integrations/sources/square.md @@ -1,85 +1,105 @@ # Square -## Overview +This page contains the setup guide and reference information for the Square source connector. -The Square Source can sync data from the [Square API](https://developer.squareup.com/reference/square) +## Prerequisites -Useful links: +To set up the Square source connector with Airbyte, you'll need to create your Square Application and use Personal token or Oauth access token. -* [Square API Explorer](https://developer.squareup.com/explorer/square) -* [Square API Docs](https://developer.squareup.com/reference/square) -* [Square Developer Dashboard](https://developer.squareup.com/apps) -#### Output schema +## Setup guide +### Step 1: Set up Square + +1. Create [Square Application](https://developer.squareup.com/apps) +2. Obtain [Personal token](https://developer.squareup.com/docs/build-basics/access-tokens) or [Oauth access token](https://developer.squareup.com/docs/oauth-api/create-urls-for-square-authorization). + +### Step 2: Set up the Square connector in Airbyte -This Source is capable of syncing the following Streams: +### For Airbyte Cloud: + +1. [Log into your Airbyte Cloud](https://cloud.airbyte.io/workspaces) account. +2. In the left navigation bar, click **Sources**. In the top-right corner, click **+ New source**. +3. On the Set up the source page, enter the name for the Square connector and select **Square** from the Source type dropdown. +4. Choose authentication method: + * Api-Key + * Fill in API key token with "Access token" from Square Application settings page (Credentials on the left) + * Oauth authentication + * Fill in Client ID and Client secret with data from Square Application settings page (Oauth on the left) + * Fill in refresh token with one obtained during the authentication process +5. Choose if your account is sandbox +6. Choose start date +7. Choose if you would like to include Deleted objects (for streams: Items, Categories, Discounts, Taxes) + +### For Airbyte OSS: +1. Navigate to the Airbyte Open Source dashboard. +2. Set the name for your source. +3. On the Set up the source page, enter the name for the Square connector and select **Square** from the Source type dropdown. +4. Choose authentication method: + * Api-Key + * Fill in API key token with "Access token" from Square Application settings page (Credentials on the left) + * Oauth authentication + * Fill in Client ID and Client secret with data from Square Application settings page (Oauth on the left) + * Fill in refresh token with one obtained during the authentication process +5. Choose if your account is sandbox +6. Choose start date +7. Choose if you would like to include Deleted objects (for streams: Items, Categories, Discounts, Taxes) + +## Supported sync modes + +The Square source connector supports the following [ sync modes](https://docs.airbyte.com/cloud/core-concepts#connection-sync-modes): +* [Full Refresh - Overwrite](https://docs.airbyte.com/understanding-airbyte/glossary#full-refresh-sync) +* [Full Refresh - Append](https://docs.airbyte.com/understanding-airbyte/connections/full-refresh-append) +* [Incremental - Append](https://docs.airbyte.com/understanding-airbyte/connections/incremental-append) +* [Incremental - Deduped History](https://docs.airbyte.com/understanding-airbyte/connections/incremental-deduped-history) + +## Supported Streams * [Items](https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects) \(Incremental\) * [Categories](https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects) \(Incremental\) * [Discounts](https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects) \(Incremental\) * [Taxes](https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects) \(Incremental\) * [ModifierLists](https://developer.squareup.com/explorer/square/catalog-api/search-catalog-objects) \(Incremental\) -* [Payments](https://developer.squareup.com/reference/square_2021-06-16/payments-api/list-payments) \(Incremental\) -* [Refunds](https://developer.squareup.com/reference/square_2021-06-16/refunds-api/list-payment-refunds) \(Incremental\) +* [Payments](https://developer.squareup.com/reference/square_2022-10-19/payments-api/list-payments) \(Incremental\) +* [Refunds](https://developer.squareup.com/reference/square_2022-10-19/refunds-api/list-payment-refunds) \(Incremental\) * [Locations](https://developer.squareup.com/explorer/square/locations-api/list-locations) -* [Team Members](https://developer.squareup.com/reference/square_2021-06-16/team-api/search-team-members) \(old V1 Employees API\) -* [List Team Member Wages](https://developer.squareup.com/explorer/square/labor-api/list-team-member-wages) \(old V1 Roles API\) +* [Team Members](https://developer.squareup.com/reference/square_2022-10-19/team-api/search-team-members) +* [List Team Member Wages](https://developer.squareup.com/explorer/square/labor-api/list-team-member-wages) * [Customers](https://developer.squareup.com/explorer/square/customers-api/list-customers) * [Shifts](https://developer.squareup.com/reference/square/labor-api/search-shifts) * [Orders](https://developer.squareup.com/reference/square/orders-api/search-orders) -#### Data type mapping +## Connector-specific features & highlights -| Integration Type | Airbyte Type | Notes | -| :--- | :--- | :--- | -| `string` | `string` | | -| `integer` | `integer` | | -| `array` | `array` | | -| `object` | `object` | | -| `boolean` | `boolean` | | - -#### Features - -| Feature | Supported? | -| :--- | :--- | -| Full Refresh Sync | Yes | -| Incremental - Append Sync | Yes | -| Namespaces | No | - -### Requirements - -* api\_key - The Square API key token -* is\_sandbox - the switch between sandbox \(true\) and production \(false\) environments +Useful links: -### Setup guide +* [Square API Explorer](https://developer.squareup.com/explorer/square) +* [Square API Docs](https://developer.squareup.com/reference/square) +* [Square Developer Dashboard](https://developer.squareup.com/apps) -To get the API key for your square application follow [Geting started](https://developer.squareup.com/docs/get-started) and [Access token](https://developer.squareup.com/docs/build-basics/access-tokens) guides -## Performance considerations +## Performance considerations (if any) No defined API rate limits were found in Square documentation however considering [this information](https://stackoverflow.com/questions/28033966/whats-the-rate-limit-on-the-square-connect-api/28053836#28053836) it has 10 QPS limits. The connector doesn't handle rate limits exceptions, but no errors were raised during testing. +Exponential [Backoff](https://developer.squareup.com/forums/t/current-square-api-rate-limit/449) strategy recommended. -Some Square API endpoints has different page size limitation +## Data type map -* Items - 1000 -* Categories - 1000 -* Discounts - 1000 -* Taxes - 1000 -* ModifierLists - 1000 -* Payments - 100 -* Refunds - 100 -* TeamMembers - 100 -* ListTeamMemberWages - 200 -* Shifts - 200 -* Orders - 500 +| Integration Type | Airbyte Type | Notes | +|:-----------------|:-------------|:------| +| `string` | `string` | | +| `integer` | `integer` | | +| `array` | `array` | | +| `object` | `object` | | +| `boolean` | `boolean` | | -## Changelog -| Version | Date | Pull Request | Subject | -|:--------|:-----------| :--- |:---------------------------------------------------------| -| 0.1.4 | 2021-12-02 | [6842](https://github.com/airbytehq/airbyte/pull/6842) | Added oauth support | -| 0.1.3 | 2021-12-06 | [8425](https://github.com/airbytehq/airbyte/pull/8425) | Update title, description fields in spec | -| 0.1.2 | 2021-11-08 | [7499](https://github.com/airbytehq/airbyte/pull/7499) | Remove base-python dependencies | -| 0.1.1 | 2021-07-09 | [4645](https://github.com/airbytehq/airbyte/pull/4645) | Update \_send\_request method due to Airbyte CDK changes | -| 0.1.0 | 2021-06-30 | [4439](https://github.com/airbytehq/airbyte/pull/4439) | Initial release supporting the Square API | +## Changelog +| Version | Date | Pull Request | Subject | +|:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------| +| 0.2.0 | 2022-11-14 | [19369](https://github.com/airbytehq/airbyte/pull/19369) | Migrate to low code (YAML); update API to version 2022-10-19; update docs | +| 0.1.4 | 2021-12-02 | [6842](https://github.com/airbytehq/airbyte/pull/6842) | Added oauth support | +| 0.1.3 | 2021-12-06 | [8425](https://github.com/airbytehq/airbyte/pull/8425) | Update title, description fields in spec | +| 0.1.2 | 2021-11-08 | [7499](https://github.com/airbytehq/airbyte/pull/7499) | Remove base-python dependencies | +| 0.1.1 | 2021-07-09 | [4645](https://github.com/airbytehq/airbyte/pull/4645) | Update \_send\_request method due to Airbyte CDK changes | +| 0.1.0 | 2021-06-30 | [4439](https://github.com/airbytehq/airbyte/pull/4439) | Initial release supporting the Square API | diff --git a/docs/integrations/sources/tiktok-marketing.md b/docs/integrations/sources/tiktok-marketing.md index eba3c398da53..e648e19e3010 100644 --- a/docs/integrations/sources/tiktok-marketing.md +++ b/docs/integrations/sources/tiktok-marketing.md @@ -550,6 +550,7 @@ The connector is restricted by [requests limitation](https://ads.tiktok.com/mark | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------| +| 1.0.1 | 2022-12-16 | [20598](https://github.com/airbytehq/airbyte/pull/20598) | Remove Audience Reports with Hourly granularity due to deprecated dimension. | | 1.0.0 | 2022-12-05 | [19758](https://github.com/airbytehq/airbyte/pull/19758) | Convert `mobile_app_id` from integer to string in AudienceReport streams. | | 0.1.17 | 2022-10-04 | [17557](https://github.com/airbytehq/airbyte/pull/17557) | Retry error 50002 | | 0.1.16 | 2022-09-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream state | diff --git a/docs/operator-guides/upgrading-airbyte.md b/docs/operator-guides/upgrading-airbyte.md index 920134ae8e99..3cd09d6f6812 100644 --- a/docs/operator-guides/upgrading-airbyte.md +++ b/docs/operator-guides/upgrading-airbyte.md @@ -103,7 +103,7 @@ If you are upgrading from (i.e. your current version of Airbyte is) Airbyte vers Here's an example of what it might look like with the values filled in. It assumes that the downloaded `airbyte_archive.tar.gz` is in `/tmp`. ```bash - docker run --rm -v /tmp:/config airbyte/migration:0.40.25 --\ + docker run --rm -v /tmp:/config airbyte/migration:0.40.26 --\ --input /config/airbyte_archive.tar.gz\ --output /config/airbyte_archive_migrated.tar.gz ``` diff --git a/kube/overlays/stable-with-resource-limits/.env b/kube/overlays/stable-with-resource-limits/.env index 25f8c2f34ac7..8dc6564b31ed 100644 --- a/kube/overlays/stable-with-resource-limits/.env +++ b/kube/overlays/stable-with-resource-limits/.env @@ -1,4 +1,4 @@ -AIRBYTE_VERSION=0.40.25 +AIRBYTE_VERSION=0.40.26 # Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db DATABASE_HOST=airbyte-db-svc diff --git a/kube/overlays/stable-with-resource-limits/kustomization.yaml b/kube/overlays/stable-with-resource-limits/kustomization.yaml index a56d4cb900b2..ef4397e683f5 100644 --- a/kube/overlays/stable-with-resource-limits/kustomization.yaml +++ b/kube/overlays/stable-with-resource-limits/kustomization.yaml @@ -8,21 +8,21 @@ bases: images: - name: airbyte/db - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/bootloader - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/server - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/webapp - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/worker - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/temporal-auto-setup newTag: 1.13.0 - name: airbyte/cron - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/connector-builder-server - newTag: 0.40.25 + newTag: 0.40.26 configMapGenerator: - name: airbyte-env diff --git a/kube/overlays/stable/.env b/kube/overlays/stable/.env index 16beb48ebca6..80657585bf81 100644 --- a/kube/overlays/stable/.env +++ b/kube/overlays/stable/.env @@ -1,4 +1,4 @@ -AIRBYTE_VERSION=0.40.25 +AIRBYTE_VERSION=0.40.26 # Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db DATABASE_HOST=airbyte-db-svc diff --git a/kube/overlays/stable/kustomization.yaml b/kube/overlays/stable/kustomization.yaml index 7bac89f7f161..28986487a32d 100644 --- a/kube/overlays/stable/kustomization.yaml +++ b/kube/overlays/stable/kustomization.yaml @@ -8,21 +8,21 @@ bases: images: - name: airbyte/db - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/bootloader - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/server - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/webapp - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/worker - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/temporal-auto-setup newTag: 1.13.0 - name: airbyte/cron - newTag: 0.40.25 + newTag: 0.40.26 - name: airbyte/connector-builder-server - newTag: 0.40.25 + newTag: 0.40.26 configMapGenerator: - name: airbyte-env diff --git a/octavia-cli/Dockerfile b/octavia-cli/Dockerfile index 8ce18591f934..90f9ae347986 100644 --- a/octavia-cli/Dockerfile +++ b/octavia-cli/Dockerfile @@ -14,5 +14,5 @@ USER octavia-cli WORKDIR /home/octavia-project ENTRYPOINT ["octavia"] -LABEL io.airbyte.version=0.40.25 +LABEL io.airbyte.version=0.40.26 LABEL io.airbyte.name=airbyte/octavia-cli diff --git a/octavia-cli/README.md b/octavia-cli/README.md index e9d56b1405dd..3f9592affb57 100644 --- a/octavia-cli/README.md +++ b/octavia-cli/README.md @@ -104,7 +104,7 @@ This script: ```bash touch ~/.octavia # Create a file to store env variables that will be mapped the octavia-cli container mkdir my_octavia_project_directory # Create your octavia project directory where YAML configurations will be stored. -docker run --name octavia-cli -i --rm -v my_octavia_project_directory:/home/octavia-project --network host --user $(id -u):$(id -g) --env-file ~/.octavia airbyte/octavia-cli:0.40.25 +docker run --name octavia-cli -i --rm -v my_octavia_project_directory:/home/octavia-project --network host --user $(id -u):$(id -g) --env-file ~/.octavia airbyte/octavia-cli:0.40.26 ``` ### Using `docker-compose` @@ -712,7 +712,7 @@ You can disable telemetry by setting the `OCTAVIA_ENABLE_TELEMETRY` environment | Version | Date | Description | PR | | ------- | ---------- | ------------------------------------------------------------------------------------- | ----------------------------------------------------------- | | 0.41.0 | 2022-10-13 | Use Basic Authentication for making API requests | [#17982](https://github.com/airbytehq/airbyte/pull/17982) | -| 0.40.25 | 2022-08-10 | Enable cron and basic scheduling | [#15253](https://github.com/airbytehq/airbyte/pull/15253) | +| 0.40.26 | 2022-08-10 | Enable cron and basic scheduling | [#15253](https://github.com/airbytehq/airbyte/pull/15253) | | 0.39.33 | 2022-07-05 | Add `octavia import all` command | [#14374](https://github.com/airbytehq/airbyte/pull/14374) | | 0.39.32 | 2022-06-30 | Create import command to import and manage existing Airbyte resource from octavia-cli | [#14137](https://github.com/airbytehq/airbyte/pull/14137) | | 0.39.27 | 2022-06-24 | Create get command to retrieve resources JSON representation | [#13254](https://github.com/airbytehq/airbyte/pull/13254) | diff --git a/octavia-cli/install.sh b/octavia-cli/install.sh index a76e142017da..7b53666427ba 100755 --- a/octavia-cli/install.sh +++ b/octavia-cli/install.sh @@ -3,7 +3,7 @@ # This install scripts currently only works for ZSH and Bash profiles. # It creates an octavia alias in your profile bound to a docker run command and your current user. -VERSION=0.40.25 +VERSION=0.40.26 OCTAVIA_ENV_FILE=${HOME}/.octavia detect_profile() { diff --git a/octavia-cli/octavia_cli/telemetry.py b/octavia-cli/octavia_cli/telemetry.py index 0fb0ed2124de..98413a3d62ee 100644 --- a/octavia-cli/octavia_cli/telemetry.py +++ b/octavia-cli/octavia_cli/telemetry.py @@ -3,7 +3,6 @@ # import os -import uuid from typing import Optional import analytics @@ -77,7 +76,7 @@ def send_command_telemetry( extra_info_name (Optional[str], optional): Extra info name if the context was not built yet. Defaults to None. """ user_id = ctx.obj.get("WORKSPACE_ID") if ctx.obj.get("ANONYMOUS_DATA_COLLECTION", True) is False else None - anonymous_id = None if user_id else str(uuid.uuid1()) + anonymous_id = None if user_id else "anonymous" segment_context = {"app": {"name": "octavia-cli", "version": ctx.obj.get("OCTAVIA_VERSION")}} segment_properties = { "success": error is None, diff --git a/octavia-cli/setup.py b/octavia-cli/setup.py index 0d0bef586e50..d920b24a74ea 100644 --- a/octavia-cli/setup.py +++ b/octavia-cli/setup.py @@ -15,7 +15,7 @@ setup( name="octavia-cli", - version="0.40.25", + version="0.40.26", description="A command line interface to manage Airbyte configurations", long_description=README, author="Airbyte", diff --git a/octavia-cli/unit_tests/test_telemetry.py b/octavia-cli/unit_tests/test_telemetry.py index 8c3eaf92ef3c..fc3c2972e495 100644 --- a/octavia-cli/unit_tests/test_telemetry.py +++ b/octavia-cli/unit_tests/test_telemetry.py @@ -92,9 +92,8 @@ def test_send_command_telemetry( ): extra_info_name = "foo" mocker.patch.object(telemetry.os, "getenv", mocker.Mock(return_value=airbyte_role)) - mocker.patch.object(telemetry.uuid, "uuid1", mocker.Mock(return_value="MY_UUID")) expected_user_id = workspace_id if workspace_id is not None and anonymous_data_collection is False else None - expected_anonymous_id = "MY_UUID" if expected_user_id is None else None + expected_anonymous_id = "anonymous" if expected_user_id is None else None mock_ctx = mocker.Mock( obj={ "OCTAVIA_VERSION": octavia_version, diff --git a/tools/bin/deploy_docusaurus b/tools/bin/deploy_docusaurus index ab435502e513..166c075a4e66 100755 --- a/tools/bin/deploy_docusaurus +++ b/tools/bin/deploy_docusaurus @@ -6,6 +6,7 @@ # $0 is the currently running program (this file) this_file_directory=$(dirname $0) relative_path_to_defaults=$this_file_directory/../shell_defaults +SKIP_DEPLOY=${SKIP_DEPLOY:-'no'} # if a file exists there, source it. otherwise complain if test -f $relative_path_to_defaults; then @@ -79,6 +80,12 @@ if ! yarn build; then exit 1 fi +# "check PR mode" -- we run "yarn build" and stop before "yarn deploy" +if [ "${SKIP_DEPLOY}" = "yes" ]; then + echo -e "$blue_text""Check mode is ON: skipipping yarn deploy && git push CNAME to repo!\n\n""$default_text" + exit 0 +fi + # Check tty for local/remote deploys (we expect cloud to be non-interactive) # results like /dev/ttys000 || not a tty if test "$(tty)" == "not a tty"; then @@ -95,19 +102,6 @@ if test "$(tty)" == "not a tty"; then else yarn run deploy fi -YARN_DEPLOY_EXIT_STATUS=$? - - -# At this moment we have a bunch of changed files in Git (local) working -# directory. What is left -- is pushing changes back to Git repo to -# make changes available to everyone. However, this same script is -# used to validate "deployability" of Github PRs. And while we are in -# "check PR mode" -- we do not want to push changes back to Git repo: -if [ "${SKIP_DEPLOY}" = "yes" ]; then - echo -e "$blue_text""Check mode is ON: skipipping Git push to git repo!\n\n""$default_text" - exit $YARN_DEPLOY_EXIT_STATUS -fi - # Git makes more sense from / cd ..